1
0
Fork 0

RobotChase: added Makefile

This commit is contained in:
Anna Christina Naß 2020-06-28 10:25:10 +02:00
parent df68fac23f
commit d280010618
2 changed files with 14 additions and 0 deletions

14
RobotChase/Makefile Normal file
View File

@ -0,0 +1,14 @@
CC = zcc
CFLAGS = +cpm -lm -lndos -O3
OBJ = chase.com
ADDITIONALS = ansi.c
all: $(OBJ)
%.com : %.c
$(CC) $(CFLAGS) -o $@ $< $(ADDITIONALS)
clean:
$(RM) *~ $(OBJ) zcc_opt.def