rocksndiamonds-3.3.0.0
[rocksndiamonds.git] / Makefile
index 832269b0b1ba5341c20cce999bd1df8c69ef2c98..75fde6be5e40b15ae56b27ec64ba6fce4e88df0d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 # =============================================================================
 # Rocks'n'Diamonds Makefile
 # -----------------------------------------------------------------------------
-# (c) 1995-2005 Holger Schemel <info@artsoft.org>
+# (c) 1995-2007 Holger Schemel <info@artsoft.org>
 # =============================================================================
 
 # -----------------------------------------------------------------------------
@@ -22,10 +22,14 @@ 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
@@ -38,8 +42,12 @@ X11_PATH = /usr/X11R6
 # 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
-CROSS_PATH_WIN32=/usr/local/cross-tools/i386-mingw32msvc
+CROSS_PATH_MSDOS = /usr/local/cross-msdos/i386-msdosdjgpp
+CROSS_PATH_WIN32 = /usr/local/cross-tools/i386-mingw32msvc
+
+# compile special edition of R'n'D instead of the normal (classic) version
+# SPECIAL_EDITION = rnd_jue
+
 
 # -----------------------------------------------------------------------------
 # there should be no need to change anything below
@@ -96,20 +104,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
@@ -126,8 +134,16 @@ enginetestnew: all
 leveltest: all
        ./Scripts/make_enginetest.sh leveltest
 
+levelsketch_images: all
+       ./Scripts/make_levelsketch_images.sh
+
 backup:
-       ./Scripts/make_backup.sh src
+       ./Scripts/make_backup.sh src tar
+
+backup-net-copy:
+       ./Scripts/make_backup.sh src scp
+
+backup-net: backup backup-net-copy
 
 backup_lev:
        ./Scripts/make_backup.sh lev
@@ -135,53 +151,75 @@ backup_lev:
 backup_gfx:
        ./Scripts/make_backup.sh gfx
 
-dist-unix:
+# prerelease:
+#      ./Scripts/make_prerelease.sh
+
+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) x11
+
+dist-build-msdos:
+       @BUILD_DIST=TRUE $(MAKE) cross-msdos
+
+dist-build-win32:
+       @BUILD_DIST=TRUE $(MAKE) cross-win32
+
+dist-build-macosx:
+       # (this is done by "dist-package-macosx" target)
+
+dist-package-unix:
        ./Scripts/make_dist.sh unix .
 
-dist-msdos:
+dist-package-msdos:
        ./Scripts/make_dist.sh dos .
 
-dist-win32:
+dist-package-win32:
        ./Scripts/make_dist.sh win .
 
-dist-macosx:
+dist-package-macosx:
        ./Scripts/make_dist.sh mac . $(MAKE)
 
-upload-unix:
+dist-upload-unix:
        ./Scripts/make_dist.sh unix . upload
 
-upload-msdos:
+dist-upload-msdos:
        ./Scripts/make_dist.sh dos . 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-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-msdos
+
+dist-upload-all:
+       $(MAKE) dist-upload-unix
+       $(MAKE) dist-upload-win32
+       $(MAKE) dist-upload-macosx
+#      $(MAKE) dist-upload-msdos
+
+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