mirror of
https://github.com/Michaelangel007/c2t.git
synced 2024-11-24 22:32:37 +00:00
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
|
|
WIN32GCC = /usr/local/gcc-4.8.0-qt-4.8.4-for-mingw32/win32-gcc/bin/i586-mingw32-gcc
|
|
|
|
all: bin/c2t bin/c2t-96h
|
|
|
|
windows: bin/c2t.exe bin/c2t-96h.exe
|
|
|
|
dist: all windows
|
|
|
|
clean: testclean
|
|
rm -f c2t.h bin/c2t bin/c2t-96h bin/c2t.exe bin/c2t-96h.exe
|
|
cd asm; make clean
|
|
|
|
bin/c2t: c2t.c c2t.h
|
|
gcc -Wall -Wno-unused-value -Wno-unused-function -I. -O3 -o bin/c2t c2t.c
|
|
|
|
bin/c2t-96h: c2t-96h.c c2t.h
|
|
gcc -Wall -Wno-unused-value -Wno-unused-function -I. -O3 -o bin/c2t-96h c2t-96h.c
|
|
|
|
bin/c2t.exe: c2t.c c2t.h
|
|
$(WIN32GCC) -Wall -Wno-unused-value -Wno-unused-function -I. -O3 -o bin/c2t.exe c2t.c
|
|
|
|
bin/c2t-96h.exe: c2t-96h.c c2t.h
|
|
$(WIN32GCC) -Wall -Wno-unused-value -Wno-unused-function -I. -O3 -o bin/c2t-96h.exe c2t-96h.c
|
|
|
|
c2t.h: mon/dos33.boot1.mon mon/dos33.boot2.mon asm/autoload.s asm/diskload2.s asm/diskload3.s asm/diskload8000.s asm/diskload9600.s asm/fastload8000.s asm/fastload9600.s asm/fastloadcd.s asm/inflate.s
|
|
./makeheader
|
|
|
|
test: bin/c2t-96h bin/c2t-96h.exe tests/test.md
|
|
cd tests; ./test.sh test.md
|
|
|
|
quicktest: testclean bin/c2t-96h tests/quicktest.md
|
|
cd tests; ./test.sh quicktest.md
|
|
|
|
testclean:
|
|
cd tests; rm -f passed test.log
|