From d2800106189755141197063e663681d5bc169ad6 Mon Sep 17 00:00:00 2001 From: acn Date: Sun, 28 Jun 2020 10:25:10 +0200 Subject: [PATCH] RobotChase: added Makefile --- RobotChase/Makefile | 14 ++++++++++++++ RobotChase/{CHASE.COM => chase.com} | Bin 2 files changed, 14 insertions(+) create mode 100644 RobotChase/Makefile rename RobotChase/{CHASE.COM => chase.com} (100%) diff --git a/RobotChase/Makefile b/RobotChase/Makefile new file mode 100644 index 0000000..e51ae67 --- /dev/null +++ b/RobotChase/Makefile @@ -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 + diff --git a/RobotChase/CHASE.COM b/RobotChase/chase.com similarity index 100% rename from RobotChase/CHASE.COM rename to RobotChase/chase.com