Restory working seed value for dwarf.log.
[open-adventure.git] / Makefile
index efd039fac2598340845e715b296692ffcbdf317e..84477c8b62f9c93af575811b46e45c6cfb84493d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,16 @@
 # Makefile for the open-source release of adventure 2.5
 
-OBJS=main.o init.o actions1.o actions2.o score.o misc.o datime.o
-SOURCES=$(OBJS:.o=.c) COPYING NEWS README advent.text control
+LIBS=-lrt
+OBJS=main.o init.o actions1.o actions2.o score.o misc.o
+SOURCES=$(OBJS:.o=.c) COPYING NEWS README TODO advent.text control
 
 .c.o:
        gcc -O $(DBX) -c $<
 
 advent:        $(OBJS)
-       gcc -O $(DBX) -o advent $(OBJS)
+       gcc -std=c99 -O $(DBX) -o advent $(OBJS) $(LIBS)
 
-main.o:                misc.h funcs.h
+main.o:                main.h misc.h funcs.h
 
 init.o:                misc.h main.h share.h funcs.h
 
@@ -22,7 +23,11 @@ score.o:     misc.h main.h share.h
 misc.o:                misc.h main.h
 
 clean:
-       rm -f *.o advent advent.html advent.6
+       rm -f *.o advent advent.html advent.6 adventure.data
+       cd tests; $(MAKE) --quiet clean
+
+check: advent
+       cd tests; $(MAKE) --quiet
 
 # Requires asciidoc and xsltproc/docbook stylesheets.
 .asc.6: