X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=Makefile;h=cbce7ef0a7e2d251fafb68860443cf696897eaa9;hp=a2ceff1dcece4a670382bc03b409963e001423e9;hb=01342840f91b6a1a215d4f7ed90cddbe7da18099;hpb=852a8eef1e8858a40da0be4093eba3deaf468f51 diff --git a/Makefile b/Makefile index a2ceff1d..cbce7ef0 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,12 @@ # ============================================================================= -# Rocks'n'Diamonds Makefile +# Rocks'n'Diamonds - McDuffin Strikes Back! # ----------------------------------------------------------------------------- -# (c) 1995-2007 Holger Schemel +# (c) 1995-2014 by Artsoft Entertainment +# Holger Schemel +# info@artsoft.org +# http://www.artsoft.org/ +# ----------------------------------------------------------------------------- +# Makefile # ============================================================================= # ----------------------------------------------------------------------------- @@ -16,16 +21,17 @@ CC = gcc # (this must be set to "gmake" for some systems) MAKE = make -# path to X11 on your system -X11_PATH = /usr/X11R6 - # 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 +# use the following setting for Debian / Ubuntu installations: +# RO_GAME_DIR = /usr/share/games/rocksndiamonds # directory for writable game data (like highscore files) # default is '.' to be able to run program without installation # RW_GAME_DIR = /var/games +# use the following setting for Debian / Ubuntu installations: +# RW_GAME_DIR = /var/games/rocksndiamonds # uncomment if system has no joystick include file # JOYSTICK = -DNO_JOYSTICK @@ -37,8 +43,7 @@ X11_PATH = /usr/X11R6 # uncomment to install game in single-user environment (default) # SCORE_ENTRIES = MANY_PER_NAME -# paths for cross-compiling (only needed for non-native MS-DOS and Win32 build) -CROSS_PATH_MSDOS = /usr/local/cross-msdos/i386-msdosdjgpp +# path for cross-compiling (only needed for non-native Windows build) CROSS_PATH_WIN32 = /usr/local/cross-tools/i386-mingw32msvc # compile special edition of R'n'D instead of the normal (classic) version @@ -54,8 +59,7 @@ CROSS_PATH_WIN32 = /usr/local/cross-tools/i386-mingw32msvc SRC_DIR = src MAKE_CMD = $(MAKE) -C $(SRC_DIR) -# DEFAULT_TARGET = x11 -DEFAULT_TARGET = sdl +DEFAULT_TARGET = sdl2 # ----------------------------------------------------------------------------- @@ -65,17 +69,11 @@ DEFAULT_TARGET = sdl all: @$(MAKE_CMD) TARGET=$(DEFAULT_TARGET) -x11: - @$(MAKE_CMD) TARGET=x11 - sdl: @$(MAKE_CMD) TARGET=sdl -solaris: - @$(MAKE_CMD) PLATFORM=solaris TARGET=x11 - -solaris-sdl: - @$(MAKE_CMD) PLATFORM=solaris TARGET=sdl +sdl2: + @$(MAKE_CMD) TARGET=sdl2 mac: @$(MAKE_CMD) PLATFORM=macosx @@ -83,15 +81,12 @@ mac: mac-static: @$(MAKE_CMD) PLATFORM=macosx TARGET=sdl-static -msdos: - @$(MAKE_CMD) PLATFORM=msdos +mac2-static: + @$(MAKE_CMD) PLATFORM=macosx TARGET=sdl2-static os2: @$(MAKE_CMD) PLATFORM=os2 -cross-msdos: - @PATH=$(CROSS_PATH_MSDOS)/bin:${PATH} $(MAKE_CMD) PLATFORM=cross-msdos - cross-win32: @PATH=$(CROSS_PATH_WIN32)/bin:${PATH} $(MAKE_CMD) PLATFORM=cross-win32 @@ -100,20 +95,20 @@ clean: # ----------------------------------------------------------------------------- -# development only +# development, test, distribution build and packaging targets # ----------------------------------------------------------------------------- auto-conf: @$(MAKE_CMD) auto-conf run: all - @./rocksndiamonds --verbose + @$(MAKE_CMD) run gdb: all - @gdb -batch -x GDB_COMMANDS ./rocksndiamonds + @$(MAKE_CMD) gdb valgrind: all - @valgrind -v --leak-check=yes ./rocksndiamonds 2> valgrind.out + @$(MAKE_CMD) valgrind enginetest: all ./Scripts/make_enginetest.sh @@ -130,14 +125,16 @@ enginetestnew: all leveltest: all ./Scripts/make_enginetest.sh leveltest +levelsketch_images: all + ./Scripts/make_levelsketch_images.sh + backup: - ./Scripts/make_backup.sh src 1 + ./Scripts/make_backup.sh src tar -backup2: - ./Scripts/make_backup.sh src 2 +backup-net-copy: + ./Scripts/make_backup.sh src scp -backup3: - ./Scripts/make_backup.sh src 3 +backup-all: backup backup-net-copy backup_lev: ./Scripts/make_backup.sh lev @@ -148,56 +145,74 @@ backup_gfx: # prerelease: # ./Scripts/make_prerelease.sh -dist-unix: - ./Scripts/make_dist.sh unix . +jue: + @$(MAKE) SPECIAL_EDITION=rnd_jue all + +jue-win: + @$(MAKE) SPECIAL_EDITION=rnd_jue cross-win32 + +dist-clean: + @$(MAKE_CMD) dist-clean + +dist-build-unix: + @BUILD_DIST=TRUE $(MAKE) + +dist-build-win32: + @BUILD_DIST=TRUE $(MAKE) cross-win32 -dist-msdos: - ./Scripts/make_dist.sh dos . +dist-build-macosx: +# (this is done by "dist-package-macosx" target) -dist-win32: +dist-build-macosx-ppc: +# (this is done by "dist-package-macosx-ppc" target) + +dist-package-unix: + ./Scripts/make_dist.sh unix . + +dist-package-win32: ./Scripts/make_dist.sh win . -dist-macosx: +dist-package-macosx: ./Scripts/make_dist.sh mac . $(MAKE) -upload-unix: - ./Scripts/make_dist.sh unix . upload +dist-package-macosx-ppc: + ./Scripts/make_dist.sh mac-ppc . $(MAKE) -upload-msdos: - ./Scripts/make_dist.sh dos . upload +dist-upload-unix: + ./Scripts/make_dist.sh unix . upload -upload-win32: +dist-upload-win32: ./Scripts/make_dist.sh win . upload -upload-macosx: +dist-upload-macosx: ./Scripts/make_dist.sh mac . upload -dist-clean: - @$(MAKE_CMD) dist-clean - -dist-build-unix: - @BUILD_DIST=TRUE $(MAKE) x11 - -dist-build-win32: - @BUILD_DIST=TRUE $(MAKE) cross-win32 - -dist-build-msdos: - @BUILD_DIST=TRUE $(MAKE) cross-msdos +dist-upload-macosx-ppc: + ./Scripts/make_dist.sh mac-ppc . upload dist-build-all: $(MAKE) clean $(MAKE) dist-build-unix ; $(MAKE) dist-clean $(MAKE) dist-build-win32 ; $(MAKE) dist-clean -# $(MAKE) dist-build-msdos ; $(MAKE) dist-clean -# dist-all: dist-build-all dist-unix dist-msdos dist-win32 dist-macosx -dist-all: dist-build-all dist-unix dist-win32 dist-macosx +dist-package-all: + $(MAKE) dist-package-unix + $(MAKE) dist-package-win32 + $(MAKE) dist-package-macosx + $(MAKE) dist-package-macosx-ppc + +dist-upload-all: + $(MAKE) dist-upload-unix + $(MAKE) dist-upload-win32 + $(MAKE) dist-upload-macosx + $(MAKE) dist-upload-macosx-ppc + +dist-all: dist-build-all dist-package-all -# upload-all: upload-unix upload-msdos upload-win32 upload-macosx -upload-all: upload-unix upload-win32 upload-macosx +upload-all: dist-upload-all tags: $(MAKE_CMD) tags depend dep: - $(MAKE_CMD) depend + $(MAKE_CMD) TARGET=$(DEFAULT_TARGET) depend