X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=Makefile;h=5d94cb1aee478da11ffa7d5732b51bca8b974a41;hp=ba4919350141d08f5c9e2e27359db0935b256cd3;hb=71c4b8d626b4a731a72840facb6bd548c7e33da9;hpb=38c26472a6e9f0f037ddfe535d3919c00772b26f diff --git a/Makefile b/Makefile index ba491935..5d94cb1a 100644 --- a/Makefile +++ b/Makefile @@ -1,156 +1,163 @@ -#=============================================================================# -# Makefile for Rocks'n'Diamonds # -# (c) 1995-2002 Holger Schemel, info@artsoft.org # -#=============================================================================# - -#-----------------------------------------------------------------------------# -# configuration section # -#-----------------------------------------------------------------------------# - -# specify command name of 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 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 -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 -# 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 -# RW_GAME_DIR = /var/games - -# uncomment this if your system has no joystick include file +# directory for read-only game data (like graphics, sounds, levels) +# (this directory is usually the game's installation directory) +# default is '.' to be able to run program without installation +# RO_GAME_DIR = . +# use the following setting for Debian / Ubuntu installations: +# RO_GAME_DIR = /usr/share/games/rocksndiamonds + +# directory for writable game data (like highscore files) +# (if no "scores" directory exists, scores are saved in user data directory) +# default is '.' to be able to run program without installation +# RW_GAME_DIR = . +# 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 -# 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 -# SCORE_ENTRIES = ONE_PER_NAME -# when installing the game in a single user environment, choose this -# SCORE_ENTRIES = MANY_PER_NAME +# path for cross-compiling (only needed for non-native Windows build) +CROSS_PATH_WIN32 = /usr/local/cross-tools/i386-mingw32msvc -# 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 -#-----------------------------------------------------------------------------# -# 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 -all: - @$(MAKE_CMD) TARGET=$(DEFAULT_TARGET) +# ----------------------------------------------------------------------------- +# build targets +# ----------------------------------------------------------------------------- -x11: - @$(MAKE_CMD) TARGET=x11 +all: + @$(MAKE_CMD) 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 -msdos: - @$(MAKE_CMD) PLATFORM=msdos - -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 clean: @$(MAKE_CMD) clean +clean-git: + @$(MAKE_CMD) clean-git -#-----------------------------------------------------------------------------# -# development only stuff # -#-----------------------------------------------------------------------------# + +# ----------------------------------------------------------------------------- +# development, test, distribution build and packaging targets +# ----------------------------------------------------------------------------- auto-conf: - ./Scripts/create_element_defs.pl --graphics > src/conf_gfx.h - ./Scripts/create_element_defs.pl --sounds > src/conf_snd.h - ./Scripts/create_element_defs.pl --chars > src/conf_chr.c - ./Scripts/create_element_defs.pl --custom > src/conf_cus.c - ./Scripts/create_element_defs.pl --el2gfx > src/conf_e2g.c + @$(MAKE_CMD) auto-conf + +run: all + @$(MAKE_CMD) run -run: - @$(MAKE_CMD) TARGET=$(DEFAULT_TARGET) && ./rocksndiamonds --verbose +gdb: all + @$(MAKE_CMD) gdb -gdb: - @$(MAKE_CMD) TARGET=$(DEFAULT_TARGET) && gdb ./rocksndiamonds +valgrind: all + @$(MAKE_CMD) valgrind -enginetest: +enginetest: all ./Scripts/make_enginetest.sh -enginetestfast: +enginetestcustom: all + ./Scripts/make_enginetest.sh custom + +enginetestfast: all ./Scripts/make_enginetest.sh fast -backup: - ./Scripts/make_backup.sh src +enginetestnew: all + ./Scripts/make_enginetest.sh new + +leveltest: all + ./Scripts/make_enginetest.sh leveltest + +levelsketch_images: all + ./Scripts/make_levelsketch_images.sh -backup_lev: - ./Scripts/make_backup.sh lev +dist-clean: + @$(MAKE_CMD) dist-clean -backup_gfx: - ./Scripts/make_backup.sh gfx +dist-build-unix: + @BUILD_DIST=TRUE $(MAKE) -dist-unix: - ./Scripts/make_dist.sh unix . +dist-build-win32: + @BUILD_DIST=TRUE $(MAKE) cross-win32 -dist-msdos: - ./Scripts/make_dist.sh dos . +dist-build-macosx: + @BUILD_DIST=TRUE $(MAKE) -dist-win32: - ./Scripts/make_dist.sh win . +dist-package-unix: + ./Scripts/make_dist.sh package unix -dist-macosx: - ./Scripts/make_dist.sh mac . $(MAKE) +dist-package-win32: + ./Scripts/make_dist.sh package win -upload-unix: - ./Scripts/make_dist.sh unix . upload +dist-package-macosx: + ./Scripts/make_dist.sh package mac -upload-msdos: - ./Scripts/make_dist.sh dos . upload +dist-upload-unix: + ./Scripts/make_dist.sh upload unix -upload-win32: - ./Scripts/make_dist.sh win . upload +dist-upload-win32: + ./Scripts/make_dist.sh upload win -upload-macosx: - ./Scripts/make_dist.sh mac . upload +dist-upload-macosx: + ./Scripts/make_dist.sh upload mac -dist-clean: - @$(MAKE_CMD) dist-clean +dist-package-all: + $(MAKE) dist-package-unix + $(MAKE) dist-package-win32 + $(MAKE) dist-package-macosx + +dist-upload-all: + $(MAKE) dist-upload-unix + $(MAKE) dist-upload-win32 + $(MAKE) dist-upload-macosx -dist-build-all: - $(MAKE) clean - @BUILD_DIST=TRUE $(MAKE) x11 ; $(MAKE) dist-clean - @BUILD_DIST=TRUE $(MAKE) cross-win32 ; $(MAKE) dist-clean - @BUILD_DIST=TRUE $(MAKE) cross-msdos ; $(MAKE) dist-clean +package-all: dist-package-all -dist-all: dist-build-all dist-unix dist-msdos dist-win32 dist-macosx +upload-all: dist-upload-all -upload-all: upload-unix upload-msdos upload-win32 upload-macosx +tags: + $(MAKE_CMD) tags depend dep: $(MAKE_CMD) depend