X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=Makefile;h=3e5877f063d467b511c5bcff015b9361542789a4;hp=f4921768319dae2ee6a07e5b020a069d7cab3f18;hb=67f3bfab902e53e0dc24a01eb6c0e4d274030a47;hpb=b13dc8e30a0c07bea53bf168ae6d1017394d3c22 diff --git a/Makefile b/Makefile index f4921768..3e5877f0 100644 --- a/Makefile +++ b/Makefile @@ -1,142 +1,243 @@ -#=============================================================================# -# 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 +# https://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/i686-w64-mingw32 +CROSS_PATH_WIN64 = /usr/local/cross-tools/x86_64-w64-mingw32 -# 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 +ANDROID_DIR ?= build-projects/android + MAKE_CMD = $(MAKE) -C $(SRC_DIR) +MAKE_CMD_ANDROID = $(MAKE) -C $(ANDROID_DIR) -DEFAULT_TARGET = sdl -all: - @$(MAKE_CMD) TARGET=$(DEFAULT_TARGET) +# ----------------------------------------------------------------------------- +# build targets +# ----------------------------------------------------------------------------- -x11: - @$(MAKE_CMD) TARGET=x11 - -sdl: - @$(MAKE_CMD) TARGET=sdl +all: + @$(MAKE_CMD) -solaris: - @$(MAKE_CMD) PLATFORM=solaris TARGET=x11 +cross-win32: + @PATH=$(CROSS_PATH_WIN32)/bin:${PATH} $(MAKE_CMD) PLATFORM=cross-win32 -solaris-sdl: - @$(MAKE_CMD) PLATFORM=solaris TARGET=sdl +cross-win64: + @PATH=$(CROSS_PATH_WIN64)/bin:${PATH} $(MAKE_CMD) PLATFORM=cross-win64 -mac: - @$(MAKE_CMD) PLATFORM=macosx +android-prepare: + @$(MAKE_CMD_ANDROID) prepare -msdos: - @$(MAKE_CMD) PLATFORM=msdos +android-package: + @$(MAKE_CMD_ANDROID) package -cross-msdos: - @PATH=$(CROSS_PATH_MSDOS)/bin:${PATH} $(MAKE_CMD) PLATFORM=cross-msdos +android-clean: + @$(MAKE_CMD_ANDROID) clean -cross-win32: - @PATH=$(CROSS_PATH_WIN32)/bin:${PATH} $(MAKE_CMD) PLATFORM=cross-win32 +android: android-package clean: @$(MAKE_CMD) clean +clean-git: + @$(MAKE_CMD) clean-git -#-----------------------------------------------------------------------------# -# development only stuff # -#-----------------------------------------------------------------------------# +clean-android: android-clean -run: - @$(MAKE_CMD) TARGET=$(DEFAULT_TARGET) && ./rocksndiamonds --verbose -gdb: - @$(MAKE_CMD) TARGET=$(DEFAULT_TARGET) && gdb ./rocksndiamonds +# ----------------------------------------------------------------------------- +# development targets +# ----------------------------------------------------------------------------- -backup: - ./Scripts/make_backup.sh src +MAKE_ENGINETEST = ./Scripts/make_enginetest.sh +MAKE_LEVELSKETCH = ./Scripts/make_levelsketch_images.sh -backup_lev: - ./Scripts/make_backup.sh lev +auto-conf: + @$(MAKE_CMD) auto-conf -backup_gfx: - ./Scripts/make_backup.sh gfx +conf-time: + @$(MAKE_CMD) conf-time -dist-unix: - ./Scripts/make_dist.sh unix . +conf-hash: + @$(MAKE_CMD) conf-hash -dist-msdos: - ./Scripts/make_dist.sh dos . +run: all + @$(MAKE_CMD) run -dist-win32: - ./Scripts/make_dist.sh win . +gdb: all + @$(MAKE_CMD) gdb -dist-macosx: - ./Scripts/make_dist.sh mac . $(MAKE) +valgrind: all + @$(MAKE_CMD) valgrind -upload-unix: - ./Scripts/make_dist.sh unix . upload +tags: + $(MAKE_CMD) tags -upload-msdos: - ./Scripts/make_dist.sh dos . upload +depend dep: + $(MAKE_CMD) depend + +enginetest: all + $(MAKE_ENGINETEST) + +enginetestcustom: all + $(MAKE_ENGINETEST) custom + +enginetestfast: all + $(MAKE_ENGINETEST) fast + +enginetestnew: all + $(MAKE_ENGINETEST) new -upload-win32: - ./Scripts/make_dist.sh win . upload +leveltest: all + $(MAKE_ENGINETEST) leveltest -upload-macosx: - ./Scripts/make_dist.sh mac . upload +levelsketch_images: all + $(MAKE_LEVELSKETCH) + + +# ----------------------------------------------------------------------------- +# distribution targets +# ----------------------------------------------------------------------------- + +MAKE_DIST = ./Scripts/make_dist.sh dist-clean: @$(MAKE_CMD) dist-clean -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 +dist-clean-android: + @$(MAKE_CMD_ANDROID) dist-clean -dist-all: dist-build-all dist-unix dist-msdos dist-win32 dist-macosx +dist-build-linux: + @BUILD_DIST=TRUE $(MAKE) -upload-all: upload-unix upload-msdos upload-win32 upload-macosx +dist-build-win32: + @BUILD_DIST=TRUE $(MAKE) cross-win32 -depend dep: - $(MAKE_CMD) depend +dist-build-win64: + @BUILD_DIST=TRUE $(MAKE) cross-win64 + +dist-build-mac: + @BUILD_DIST=TRUE $(MAKE) + +dist-build-android: + @BUILD_DIST=TRUE $(MAKE) android + +dist-package-linux: + $(MAKE_DIST) package linux + +dist-package-win32: + $(MAKE_DIST) package win32 + +dist-package-win64: + $(MAKE_DIST) package win64 + +dist-package-mac: + $(MAKE_DIST) package mac + +dist-package-android: + $(MAKE_DIST) package android + +dist-copy-package-linux: + $(MAKE_DIST) copy-package linux + +dist-copy-package-win32: + $(MAKE_DIST) copy-package win32 + +dist-copy-package-win64: + $(MAKE_DIST) copy-package win64 + +dist-copy-package-mac: + $(MAKE_DIST) copy-package mac + +dist-copy-package-android: + $(MAKE_DIST) copy-package android + +dist-upload-linux: + $(MAKE_DIST) upload linux + +dist-upload-win32: + $(MAKE_DIST) upload win32 + +dist-upload-win64: + $(MAKE_DIST) upload win64 + +dist-upload-mac: + $(MAKE_DIST) upload mac + +dist-upload-android: + $(MAKE_DIST) upload android + +dist-package-all: + $(MAKE) dist-package-linux + $(MAKE) dist-package-win32 + $(MAKE) dist-package-win64 + $(MAKE) dist-package-mac + $(MAKE) dist-package-android + +dist-copy-package-all: + $(MAKE) dist-copy-package-linux + $(MAKE) dist-copy-package-win32 + $(MAKE) dist-copy-package-win64 + $(MAKE) dist-copy-package-mac + $(MAKE) dist-copy-package-android + +dist-upload-all: + $(MAKE) dist-upload-linux + $(MAKE) dist-upload-win32 + $(MAKE) dist-upload-win64 + $(MAKE) dist-upload-mac + $(MAKE) dist-upload-android + +dist-release-all: dist-package-all dist-copy-package-all dist-upload-all + +package-all: dist-package-all + +copy-package-all: dist-copy-package-all + +upload-all: dist-upload-all + +release-all: dist-release-all