Don Wood's 430-point Adventure 2.5 from 1995, from rec.games.int-fiction.

This commit is contained in:
Eric S. Raymond 2017-02-16 11:59:50 -05:00
commit 24d7aeaf8a
14 changed files with 6166 additions and 0 deletions

23
Makefile Normal file
View file

@ -0,0 +1,23 @@
# NOTE: This version of Adventure was developed by the author on private
# equipment, and has been ported to Sun for entertainment purposes only.
# The author (Don Woods) retains full rights to the work.
OBJS=main.o init.o actions1.o actions2.o score.o misc.o datime.o
.c.o:
gcc -O $(DBX) -c $<
adventure: $(OBJS)
gcc -O $(DBX) -o adventure $(OBJS)
main.o: misc.h funcs.h
init.o: misc.h main.h share.h funcs.h
actions1.o: misc.h main.h share.h funcs.h
actions2.o: misc.h main.h share.h funcs.h
score.o: misc.h main.h share.h
misc.o: misc.h main.h