mirror of
https://github.com/Michaelangel007/c2t.git
synced 2024-11-26 06:49:16 +00:00
15 lines
116 B
Makefile
15 lines
116 B
Makefile
|
|
|
|
all: c2t
|
|
|
|
clean:
|
|
rm c2t.h c2t
|
|
cd asm; make clean
|
|
|
|
|
|
c2t: c2t.h
|
|
gcc -Wall -O3 -o c2t c2t.c
|
|
|
|
c2t.h:
|
|
./makeheader
|