mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-22 01:31:33 +00:00
10 lines
266 B
Makefile
10 lines
266 B
Makefile
gccopts=-Wno-format-extra-args
|
|
incfiles=common.c files.c label.c asm.c parse.c vars.c expr.c cond.c stmnt.c include.c
|
|
mainfile=c02.c
|
|
outfile=c02
|
|
c02: ${incfiles} ${mainfile}
|
|
gcc ${gccopts} ${incfiles} ${mainfile} -o ${outfile}
|
|
clean:
|
|
rm *.o ${outfile}
|
|
|