Fix some C that gcc tags as unclean or unsafe. Rename 'a' structure to 'game'.
[super-star-trek.git] / makefile
index 3e351422990f7e31d8fe731a2292f55fae855e9c..59efa674f7b46fc22e82dee0689d894ce571d04a 100644 (file)
--- a/makefile
+++ b/makefile
@@ -7,9 +7,11 @@ OFILES=     sst.o finish.o reports.o setup.o linux.o moving.o battle.o events.o
 
 HFILES=     sst.h
 
-sstos2.exe:  $(OFILES)
+sst:  $(OFILES)
        gcc  -o sst $(OFILES) -lm
 
-        
 $(OFILES):  $(HFILES)
 
+clean:
+       rm -f *.o sst
+