X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=Makefile;h=41840b0cb6e2734dd816b2dd57051631069f5bfa;hp=82094534cd33948f2521947f2d821e5c77f5184e;hb=a8e936aa644b673bdd5d34c888acd92b562c82dc;hpb=4bca9bc5f299a9b287134b06e41b147f506792b4 diff --git a/Makefile b/Makefile index 82094534..41840b0c 100644 --- a/Makefile +++ b/Makefile @@ -1,72 +1,77 @@ -#=============================================================================# -# Makefile for Rocks'n'Diamonds # -# (c) 1995-2000 Holger Schemel, info@artsoft.org # -#=============================================================================# - -#-----------------------------------------------------------------------------# -# configuration section # -#-----------------------------------------------------------------------------# - -# specify your favorite ANSI C compiler +# ============================================================================= +# Rocks'n'Diamonds - McDuffin Strikes Back! +# ----------------------------------------------------------------------------- +# (c) 1995-2015 by Artsoft Entertainment +# Holger Schemel +# info@artsoft.org +# http://www.artsoft.org/ +# ----------------------------------------------------------------------------- +# Makefile +# ============================================================================= + +# ----------------------------------------------------------------------------- +# configuration +# ----------------------------------------------------------------------------- + +# command name of your favorite ANSI C compiler +# (this must be set to "cc" for some systems) CC = gcc -# specify path to X11 on your system -# if undefined, use system defaults (works with Linux/gcc/libc5) -X11_PATH = /usr/X11 +# command name of GNU make on your system +# (this must be set to "gmake" for some systems) +MAKE = make -# 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 +# use the following setting for Debian / Ubuntu installations: +# RO_GAME_DIR = /usr/share/games/rocksndiamonds -# 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 +# use the following setting for Debian / Ubuntu installations: +# RW_GAME_DIR = /var/games/rocksndiamonds -# uncomment this if your system has no joystick include file +# uncomment if system has no joystick include file # JOYSTICK = -DNO_JOYSTICK -# uncomment this if your system has no sound -# SOUNDS = -DNO_SOUNDS - -# 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) -CROSS_PATH_MSDOS=/usr/local/cross-msdos/i386-msdosdjgpp -CROSS_PATH_WIN32=/usr/local/cross-tools/i386-mingw32msvc +# path for cross-compiling (only needed for non-native Windows build) +CROSS_PATH_WIN32 = /usr/local/cross-tools/i386-mingw32msvc -#-----------------------------------------------------------------------------# -# you should not need to change anything below # -#-----------------------------------------------------------------------------# -.EXPORT_ALL_VARIABLES: +# ----------------------------------------------------------------------------- +# there should be no need to change anything below +# ----------------------------------------------------------------------------- -MAKE = make +.EXPORT_ALL_VARIABLES: SRC_DIR = src MAKE_CMD = $(MAKE) -C $(SRC_DIR) -all: - @$(MAKE_CMD) TARGET=sdl -x11: - @$(MAKE_CMD) TARGET=x11 +# ----------------------------------------------------------------------------- +# build targets +# ----------------------------------------------------------------------------- + +all: + @$(MAKE_CMD) sdl: @$(MAKE_CMD) TARGET=sdl -solaris: - @$(MAKE_CMD) PLATFORM=solaris - -msdos: - @$(MAKE_CMD) PLATFORM=msdos +sdl2: + @$(MAKE_CMD) TARGET=sdl2 -cross-msdos: - @PATH=$(CROSS_PATH_MSDOS)/bin:${PATH} $(MAKE_CMD) PLATFORM=cross-msdos +mac: + @$(MAKE_CMD) PLATFORM=macosx cross-win32: @PATH=$(CROSS_PATH_WIN32)/bin:${PATH} $(MAKE_CMD) PLATFORM=cross-win32 @@ -74,27 +79,90 @@ cross-win32: clean: @$(MAKE_CMD) clean +clean-git: + @$(MAKE_CMD) clean-git + + +# ----------------------------------------------------------------------------- +# development, test, distribution build and packaging targets +# ----------------------------------------------------------------------------- + +auto-conf: + @$(MAKE_CMD) auto-conf + +run: all + @$(MAKE_CMD) run + +gdb: all + @$(MAKE_CMD) gdb + +valgrind: all + @$(MAKE_CMD) valgrind + +enginetest: all + ./Scripts/make_enginetest.sh + +enginetestcustom: all + ./Scripts/make_enginetest.sh custom + +enginetestfast: all + ./Scripts/make_enginetest.sh fast + +enginetestnew: all + ./Scripts/make_enginetest.sh new + +leveltest: all + ./Scripts/make_enginetest.sh leveltest + +levelsketch_images: all + ./Scripts/make_levelsketch_images.sh + +dist-clean: + @$(MAKE_CMD) dist-clean + +dist-build-unix: + @BUILD_DIST=TRUE $(MAKE) + +dist-build-win32: + @BUILD_DIST=TRUE $(MAKE) cross-win32 + +dist-build-macosx: + @BUILD_DIST=TRUE $(MAKE) + +dist-package-unix: + ./Scripts/make_dist.sh package unix + +dist-package-win32: + ./Scripts/make_dist.sh package win + +dist-package-macosx: + ./Scripts/make_dist.sh package mac + +dist-upload-unix: + ./Scripts/make_dist.sh upload unix -#-----------------------------------------------------------------------------# -# development only stuff # -#-----------------------------------------------------------------------------# +dist-upload-win32: + ./Scripts/make_dist.sh upload win -backup: - ./Scripts/make_backup.sh src +dist-upload-macosx: + ./Scripts/make_dist.sh upload mac -backup_lev: - ./Scripts/make_backup.sh lev +dist-package-all: + $(MAKE) dist-package-unix + $(MAKE) dist-package-win32 + $(MAKE) dist-package-macosx -backup_gfx: - ./Scripts/make_backup.sh gfx +dist-upload-all: + $(MAKE) dist-upload-unix + $(MAKE) dist-upload-win32 + $(MAKE) dist-upload-macosx -dist-unix: - ./Scripts/make_dist.sh unix . +package-all: dist-package-all -dist-msdos: - ./Scripts/make_dist.sh dos . +upload-all: dist-upload-all -dist: dist-unix dist-msdos +tags: + $(MAKE_CMD) tags depend dep: $(MAKE_CMD) depend