Add regression test that gets to reservoir.
[open-adventure.git] / Makefile
index aef58baedcdf3cd31a02bcc61fc040bce1b12800..84477c8b62f9c93af575811b46e45c6cfb84493d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -8,9 +8,9 @@ SOURCES=$(OBJS:.o=.c) COPYING NEWS README TODO advent.text control
        gcc -O $(DBX) -c $<
 
 advent:        $(OBJS)
-       gcc -O $(DBX) -o advent $(OBJS) $(LIBS)
+       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
 
@@ -24,8 +24,9 @@ misc.o:               misc.h main.h
 
 clean:
        rm -f *.o advent advent.html advent.6 adventure.data
+       cd tests; $(MAKE) --quiet clean
 
-check:
+check: advent
        cd tests; $(MAKE) --quiet
 
 # Requires asciidoc and xsltproc/docbook stylesheets.