rocksndiamonds-1.4.0
[rocksndiamonds.git] / src / Makefile
index f9c1e232a04432d805a85ce34c5ba5ed78372b95..2be4220a3589872a6d424ee28cd257aeacaf9ca0 100644 (file)
@@ -58,10 +58,10 @@ CONFIG_GAME_DIR = $(CONFIG_RO_GAME_DIR) $(CONFIG_RW_GAME_DIR)
 CONFIG = $(CONFIG_GAME_DIR) $(CONFIG_SCORE_ENTRIES) $(SOUNDS) $(JOYSTICK)
 
 # OPTIONS = -DDEBUG -g -Wall -ansi -pedantic   # only for debugging purposes
-OPTIONS = -DDEBUG -g -Wall                     # only for debugging purposes
+# OPTIONS = -DDEBUG -g -Wall                   # only for debugging purposes
 # OPTIONS = -O3 -Wall -ansi -pedantic
 # OPTIONS = -O3 -Wall
-OPTIONS = -O3
+OPTIONS = -O3
 
 # SYSTEM = -DSYSV -Ae          # may be needed for HP-UX
 
@@ -120,15 +120,3 @@ $(PROGNAME):       $(OBJS)
 clean:
        $(RM) *.o
        $(RM) $(PROGNAME)
-
-
-#-----------------------------------------------------------------------------#
-# development only stuff                                                      #
-#-----------------------------------------------------------------------------#
-
-depend:
-       for i in $(SRCS); do $(CPP) $(CFLAGS) -M $$i; done > .depend
-
-ifeq (.depend,$(wildcard .depend))
-include .depend
-endif