Relicense to 2-clause BSD. Befin the history document.
[open-adventure.git] / Makefile
1 # Makefile for the pen-source release of adventure 2.4
2
3 OBJS=main.o init.o actions1.o actions2.o score.o misc.o datime.o
4
5 .c.o:
6         gcc -O $(DBX) -c $<
7
8 adventure:      $(OBJS)
9         gcc -O $(DBX) -o adventure $(OBJS)
10
11 main.o:         misc.h funcs.h
12
13 init.o:         misc.h main.h share.h funcs.h
14
15 actions1.o:     misc.h main.h share.h funcs.h
16
17 actions2.o:     misc.h main.h share.h funcs.h
18
19 score.o:        misc.h main.h share.h
20
21 misc.o:         misc.h main.h
22
23 clean:
24         rm -f *.o adventure