X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=Makefile;h=538c451c55863a85b87a08bccd80e27971598d11;hb=6413b637e99f65b72fa0bbb007e6dc4dd03196d1;hp=bdd285b5e775938c501bd4dd53fd57723470f574;hpb=76510834f382bc82548e72c8e7f6f7672c9484dc;p=rocksndiamonds.git diff --git a/Makefile b/Makefile index bdd285b5..538c451c 100644 --- a/Makefile +++ b/Makefile @@ -1,56 +1,62 @@ -#=============================================================================# -# Makefile for Rocks'n'Diamonds # -# (c) 1995-2002 Holger Schemel, info@artsoft.org # -#=============================================================================# +# ============================================================================= +# Rocks'n'Diamonds Makefile +# ----------------------------------------------------------------------------- +# (c) 1995-2005 Holger Schemel +# ============================================================================= -#-----------------------------------------------------------------------------# -# configuration section # -#-----------------------------------------------------------------------------# +# ----------------------------------------------------------------------------- +# configuration +# ----------------------------------------------------------------------------- -# specify command name of your favorite ANSI C compiler +# command name of your favorite ANSI C compiler # (this must be set to "cc" for some systems) CC = gcc -# specify command name of GNU make on your system +# command name of GNU make on your system # (this must be set to "gmake" for some systems) MAKE = make -# specify path to X11 on your system +# path to X11 on your system X11_PATH = /usr/X11R6 -# specify directory for read-only game data (like graphics, sounds, levels) -# default is '.', so you can play without installing game data somewhere +# directory for read-only game data (like graphics, sounds, levels) +# default is '.' to be able to run program without installation # RO_GAME_DIR = /usr/games -# specify directory for writable game data (like highscore files) -# default is '.', so you can play without installing game data somewhere +# directory for writable game data (like highscore files) +# default is '.' to be able to run program without installation # RW_GAME_DIR = /var/games -# uncomment this if your system has no joystick include file +# uncomment if system has no joystick include file # JOYSTICK = -DNO_JOYSTICK -# choose if you want to allow many global score file entries for one player -# default is 'MANY_PER_NAME' -# when installing the game in a multi user environment, choose this +# choose if more than one global score file entry for one player is allowed +# (default: MANY_PER_NAME) +# uncomment to install game in multi-user environment # SCORE_ENTRIES = ONE_PER_NAME -# when installing the game in a single user environment, choose this +# uncomment to install game in single-user environment (default) # SCORE_ENTRIES = MANY_PER_NAME -# specify paths for cross-compiling (only needed for MS-DOS and Win32 build) +# paths for cross-compiling (only needed for non-native MS-DOS and Win32 build) CROSS_PATH_MSDOS=/usr/local/cross-msdos/i386-msdosdjgpp CROSS_PATH_WIN32=/usr/local/cross-tools/i386-mingw32msvc -#-----------------------------------------------------------------------------# -# you should not need to change anything below # -#-----------------------------------------------------------------------------# +# ----------------------------------------------------------------------------- +# there should be no need to change anything below +# ----------------------------------------------------------------------------- .EXPORT_ALL_VARIABLES: SRC_DIR = src MAKE_CMD = $(MAKE) -C $(SRC_DIR) -DEFAULT_TARGET = x11 -# DEFAULT_TARGET = sdl +# DEFAULT_TARGET = x11 +DEFAULT_TARGET = sdl + + +# ----------------------------------------------------------------------------- +# build targets +# ----------------------------------------------------------------------------- all: @$(MAKE_CMD) TARGET=$(DEFAULT_TARGET) @@ -73,6 +79,9 @@ mac: msdos: @$(MAKE_CMD) PLATFORM=msdos +os2: + @$(MAKE_CMD) PLATFORM=os2 + cross-msdos: @PATH=$(CROSS_PATH_MSDOS)/bin:${PATH} $(MAKE_CMD) PLATFORM=cross-msdos @@ -83,25 +92,34 @@ clean: @$(MAKE_CMD) clean -#-----------------------------------------------------------------------------# -# development only stuff # -#-----------------------------------------------------------------------------# +# ----------------------------------------------------------------------------- +# development only +# ----------------------------------------------------------------------------- auto-conf: @$(MAKE_CMD) auto-conf -run: - @$(MAKE_CMD) TARGET=$(DEFAULT_TARGET) && ./rocksndiamonds --verbose +run: all + @./rocksndiamonds --verbose + +gdb: all + @gdb -batch -x GDB_COMMANDS ./rocksndiamonds -gdb: - @$(MAKE_CMD) TARGET=$(DEFAULT_TARGET) && gdb ./rocksndiamonds +valgrind: all + @valgrind -v --leak-check=yes ./rocksndiamonds 2> valgrind.out -enginetest: +enginetest: all ./Scripts/make_enginetest.sh -enginetestfast: +enginetestcustom: all + ./Scripts/make_enginetest.sh custom + +enginetestfast: all ./Scripts/make_enginetest.sh fast +enginetestnew: all + ./Scripts/make_enginetest.sh new + backup: ./Scripts/make_backup.sh src @@ -157,5 +175,8 @@ dist-all: dist-build-all dist-unix dist-msdos dist-win32 dist-macosx upload-all: upload-unix upload-msdos upload-win32 upload-macosx +tags: + $(MAKE_CMD) tags + depend dep: $(MAKE_CMD) depend