c2d/Makefile

32 lines
670 B
Makefile
Raw Normal View History

WIN32GCC = /usr/local/gcc-4.8.0-qt-4.8.4-for-mingw32/win32-gcc/bin/i586-mingw32-gcc
2017-04-09 02:58:11 +00:00
all: bin/c2d bin/text2page
2017-04-09 02:58:11 +00:00
windows: bin/c2d.exe bin/text2page.exe
dist: all windows
2017-04-09 00:41:29 +00:00
c2d.h: c2d.h.0 asm/loader.s makeheader
./makeheader
bin/c2d: c2d.c c2d.h
gcc -Wall -Wno-missing-braces -I. -O3 -o bin/c2d c2d.c -lm
bin/c2d.exe: c2d.c c2d.h
$(WIN32GCC) -Wall -Wno-missing-braces -I. -O3 -o bin/c2d.exe c2d.c
2017-04-09 02:58:11 +00:00
bin/text2page: text2page.c
gcc -Wall -O3 -o bin/text2page text2page.c -lm
bin/text2page.exe: text2page.c
$(WIN32GCC) -Wall -O3 -o bin/text2page.exe text2page.c
clean:
2017-04-09 02:59:35 +00:00
rm -f bin/* *.dsk c2d.h c2d.h.1
(cd asm; make clean)
2017-04-09 03:22:27 +00:00
test: gameserverclient dist
./test.sh