mirror of
https://github.com/Michaelangel007/c2t.git
synced 2024-11-23 01:31:16 +00:00
17 lines
471 B
Makefile
17 lines
471 B
Makefile
|
|
|
|
all: c2t c2t-96h
|
|
|
|
clean:
|
|
rm c2t.h c2t c2t-96h
|
|
cd asm; make clean
|
|
|
|
c2t: c2t.c c2t.h
|
|
gcc -Wall -Wno-unused-value -Wno-unused-function -O3 -o c2t c2t.c
|
|
|
|
c2t-96h: c2t-96h.c c2t.h
|
|
gcc -Wall -Wno-unused-value -Wno-unused-function -O3 -o c2t-96h 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
|