1
0

Added: Pac, a Pac-Man game

This commit is contained in:
acn
2020-07-01 10:16:26 +02:00
parent 94da8293f2
commit 54fe73b528
8 changed files with 796 additions and 0 deletions

14
Pac/Makefile Normal file
View File

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