Ensure the ZZZZ magic word is reproducible.
[open-adventure.git] / Makefile
index aef58baedcdf3cd31a02bcc61fc040bce1b12800..8dbcb562e5c9529c13755ea7e2fa2197460da871 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@ 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
 
@@ -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.