Fix bug spotted by cppcheck.
[wumpus.git] / Makefile
index c9c1b925554287f6eb065b593be9c8adfeb7082d..c4257275d793e0cfb9d37198beefc622621c9d7b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 #
 # Makefile for `Hunt the Wumpus' and `Superhack' games
 #
-VERS=$(shell sed <wumpus.spec -n -e '/Version: \(.*\)/s//\1/p')
+VERS=1.5
 
 all: wumpus superhack
 
@@ -13,7 +13,7 @@ superhack: superhack.c
 
 clean:
        rm -f wumpus wumpus.o superhack superhack.o TAGS 
-       rm -f *~ *.1 *.html *.tar.gz MANIFEST SHIPPER.*
+       rm -f *~ *.1 *.html *.tar.gz MANIFEST
 
 TAGS:
        etags wumpus.c
@@ -24,7 +24,7 @@ wumpus.6: wumpus.xml
 wumpus.html: wumpus.xml
        xmlto html-nochunks wumpus.xml 
 
-SOURCES = README COPYING Makefile wumpus.c superhack.c wumpus.xml wumpus.spec
+SOURCES = README COPYING NEWS Makefile wumpus.c superhack.c wumpus.xml
 
 install: wumpus.6
        cp wumpus superhack /usr/bin/
@@ -34,6 +34,11 @@ uninstall:
        rm /usr/bin/wumpus /usr/bin/superhack
        rm /usr/share/man/man6/wumpus.6
 
+CPPCHECKOPTS =
+cppcheck:
+       cppcheck -DREVISION=$(VERS) $(CPPCHECKOPTS) wumpus.c
+       cppcheck -DREVISION=$(VERS) $(CPPCHECKOPTS) superhack.c
+
 wumpus-$(VERS).tar.gz: $(SOURCES) wumpus.6
        @ls $(SOURCES) wumpus.6 | sed s:^:wumpus-$(VERS)/: >MANIFEST
        @(cd ..; ln -s wumpus wumpus-$(VERS))
@@ -43,4 +48,7 @@ wumpus-$(VERS).tar.gz: $(SOURCES) wumpus.6
 dist: wumpus-$(VERS).tar.gz
 
 release: wumpus-$(VERS).tar.gz wumpus.html
-       shipper -u -m -t; make clean
+       shipper version=$(VERS) | sh -e -x
+
+refresh: wumpus.html
+       shipper -N -w version=$(VERS) | sh -e -x