X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;ds=inline;f=src%2FMakefile;h=d034771b175b750a31b4dacd6144d3bbaf49e531;hb=4c23826c2c9f8f6c7d1fec69769ba0d7254c9a7c;hp=0dad3f3d1736052ae23dc01a92c028db28fd65d3;hpb=9dcf51eadcd8fb8e1ba937b6a8db76096cc09b05;p=rocksndiamonds.git diff --git a/src/Makefile b/src/Makefile index 0dad3f3d..d034771b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -34,10 +34,18 @@ ifeq ($(PLATFORM),solaris) EXTRA_LIBS = -lnsl -lsocket -R$(XLIB_PATH) endif +ifeq ($(PLATFORM),windows) +PROGNAME = ../rocksndiamonds.exe +TARGET = sdl +else +PROFILING = -pg +endif + +ifeq ($(TARGET),sdl) USE_SDL = true -# USE_SDL = false -# USE_SDL_OLD_LIBS = true -USE_SDL_OLD_LIBS = false +else +USE_SDL = false +endif ifeq ($(USE_SDL_OLD_LIBS),true) SDL_EXTRA_LIBS = -lIMG -lmixer @@ -62,7 +70,7 @@ endif INCL = $(SYS_CFLAGS) LIBS = $(SYS_LDFLAGS) $(EXTRA_LIBS) -lm -endif +endif # (PLATFORM != dos) ifdef RO_GAME_DIR # path to read-only game data specified @@ -81,9 +89,11 @@ CONFIG_GAME_DIR = $(CONFIG_RO_GAME_DIR) $(CONFIG_RW_GAME_DIR) CONFIG = $(CONFIG_GAME_DIR) $(CONFIG_SCORE_ENTRIES) $(SOUNDS) $(JOYSTICK) +DEBUG = -DDEBUG -g -# OPTIONS = -DDEBUG -g -Wall -ansi -pedantic # only for debugging purposes -OPTIONS = -DDEBUG -g -Wall # only for debugging purposes +OPTIONS = $(DEBUG) -Wall # only for debugging purposes +# OPTIONS = $(DEBUG) -O3 -Wall # only for debugging purposes +# OPTIONS = $(DEBUG) -Wall -ansi -pedantic # only for debugging purposes # OPTIONS = -O3 -Wall -ansi -pedantic # OPTIONS = -O3 -Wall # OPTIONS = -O3 @@ -143,11 +153,24 @@ OBJS = main.o \ all: $(PROGNAME) $(PROGNAME): $(OBJS) - $(CC) $(OBJS) $(LIBS) -o $(PROGNAME) + $(CC) $(PROFILING) $(OBJS) $(LIBS) -o $(PROGNAME) .c.o: - $(CC) $(CFLAGS) -c $*.c + $(CC) $(PROFILING) $(CFLAGS) -c $*.c clean: $(RM) *.o + $(RM) ../*.exe $(RM) $(PROGNAME) + + +#-----------------------------------------------------------------------------# +# development only stuff # +#-----------------------------------------------------------------------------# + +depend: + for i in $(SRCS); do $(CPP) $(CFLAGS) -M $$i; done > .depend + +ifeq (.depend,$(wildcard .depend)) +include .depend +endif