1994-12-03 04:42:49 +00:00
|
|
|
TESTS = test corner ensor getch ncurses hanoi knight rain worm \
|
1994-10-07 08:58:58 +00:00
|
|
|
over scroll2 battle newdemo scroll3 xmas copy firework testcurs \
|
|
|
|
scroll
|
|
|
|
|
|
|
|
CLEANFILES += $(TESTS)
|
|
|
|
|
|
|
|
LIBS += -lncurses -lmytinfo
|
|
|
|
|
1995-05-30 05:51:47 +00:00
|
|
|
all: $(TESTS)
|
1994-10-07 08:58:58 +00:00
|
|
|
|
1995-05-30 05:51:47 +00:00
|
|
|
$(TESTS):
|
1998-09-11 05:42:37 +00:00
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) ${.CURDIR}/${.TARGET}.c -o ${.TARGET} $(LIBS)
|
1994-10-07 08:58:58 +00:00
|
|
|
|
|
|
|
test: test.c
|
|
|
|
corner: corner.c
|
|
|
|
ensor: ensor.c
|
|
|
|
getch: getch.c
|
|
|
|
ncurses: ncurses.c
|
|
|
|
hanoi: hanoi.c
|
|
|
|
knight: knight.c
|
|
|
|
rain: rain.c
|
|
|
|
worm: worm.c
|
|
|
|
over: over.c
|
|
|
|
scroll2: scroll2.c
|
|
|
|
battle: battle.c
|
|
|
|
newdemo: newdemo.c
|
|
|
|
scroll3: scroll3.c
|
|
|
|
xmas: xmas.c
|
|
|
|
copy: copy.c
|
|
|
|
firework: firework.c
|
|
|
|
testcurs: testcurs.c
|
|
|
|
scroll: scroll.c
|
|
|
|
|
1996-08-30 01:59:14 +00:00
|
|
|
.include <bsd.prog.mk>
|
1994-10-07 08:58:58 +00:00
|
|
|
|