RobotChase: added Makefile
This commit is contained in:
14
RobotChase/Makefile
Normal file
14
RobotChase/Makefile
Normal 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
|
||||
|
Reference in New Issue
Block a user