1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-11-22 16:34:15 +00:00
C02/Makefile

10 lines
275 B
Makefile
Raw Normal View History

2018-02-13 15:19:24 +00:00
gccopts=-Wno-format-extra-args
2018-02-13 22:25:57 +00:00
incfiles=common.c files.c label.c asm.c parse.c vars.c expr.c cond.c stmnt.c dclrtn.c include.c
2018-02-13 15:19:24 +00:00
mainfile=c02.c
outfile=c02
c02: ${incfiles} ${mainfile}
gcc ${gccopts} ${incfiles} ${mainfile} -o ${outfile}
clean:
rm *.o ${outfile}