X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2FMakefile;h=2be4220a3589872a6d424ee28cd257aeacaf9ca0;hp=f9c1e232a04432d805a85ce34c5ba5ed78372b95;hb=a16126b0981ba82ddcd5f7b0f763bc4ce6aa9bdc;hpb=c8dd3c1abd6a1daf4f7431a59db721ae7fba3d17 diff --git a/src/Makefile b/src/Makefile index f9c1e232..2be4220a 100644 --- a/src/Makefile +++ b/src/Makefile @@ -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