Add a manual page.
[super-star-trek.git] / makefile
index 59efa674f7b46fc22e82dee0689d894ce571d04a..2b7f50da79345e440d6ff6ab01bafec11f72e440 100644 (file)
--- a/makefile
+++ b/makefile
@@ -1,17 +1,29 @@
-CFLAGS=     -O
+CFLAGS=     -O -g
 
 .c.o:
        $(CC) $(CFLAGS) -c $<
 
-OFILES=     sst.o finish.o reports.o setup.o linux.o moving.o battle.o events.o ai.o planets.o
+CFILES= sst.c finish.c reports.c setup.c linux.c moving.c battle.c events.c ai.c planets.c
+OFILES= $(CFILES:.c=.o)
+HFILES=sst.h 
 
-HFILES=     sst.h
+SOURCES= $(CFILES) $(HFILES) sst-doc.xml TODO makehelp.py makefile sst.xml
+
+all: sst sst.doc
 
 sst:  $(OFILES)
        gcc  -o sst $(OFILES) -lm
 
 $(OFILES):  $(HFILES)
 
+sst.6: sst.xml
+       xmlto man sst.xml
+
+sst-doc.txt: sst-doc.xml
+       xmlto --skip-validation txt sst-doc.xml
+sst.doc: sst-doc.txt
+       makehelp.py >sst.doc
+
 clean:
-       rm -f *.o sst
+       rm -f *.o sst sst-doc.txt sst.doc