Document test comment format.
[open-adventure.git] / Makefile
index 95b561e59744192e8a9c31642cc1523a42ad9c79..aef58baedcdf3cd31a02bcc61fc040bce1b12800 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,6 @@
 # Makefile for the open-source release of adventure 2.5
 
+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
 
@@ -7,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)
+       gcc -O $(DBX) -o advent $(OBJS) $(LIBS)
 
 main.o:                misc.h funcs.h
 
@@ -24,6 +25,9 @@ misc.o:               misc.h main.h
 clean:
        rm -f *.o advent advent.html advent.6 adventure.data
 
+check:
+       cd tests; $(MAKE) --quiet
+
 # Requires asciidoc and xsltproc/docbook stylesheets.
 .asc.6:
        a2x --doctype manpage --format manpage $<