1 # =============================================================================
2 # Rocks'n'Diamonds - McDuffin Strikes Back!
3 # -----------------------------------------------------------------------------
4 # (c) 1995-2014 by Artsoft Entertainment
7 # http://www.artsoft.org/
8 # -----------------------------------------------------------------------------
10 # =============================================================================
12 # -----------------------------------------------------------------------------
14 # -----------------------------------------------------------------------------
16 # command name of your favorite ANSI C compiler
17 # (this must be set to "cc" for some systems)
20 # command name of GNU make on your system
21 # (this must be set to "gmake" for some systems)
24 # directory for read-only game data (like graphics, sounds, levels)
25 # default is '.' to be able to run program without installation
26 # RO_GAME_DIR = /usr/games
27 # use the following setting for Debian / Ubuntu installations:
28 # RO_GAME_DIR = /usr/share/games/rocksndiamonds
30 # directory for writable game data (like highscore files)
31 # default is '.' to be able to run program without installation
32 # RW_GAME_DIR = /var/games
33 # use the following setting for Debian / Ubuntu installations:
34 # RW_GAME_DIR = /var/games/rocksndiamonds
36 # uncomment if system has no joystick include file
37 # JOYSTICK = -DNO_JOYSTICK
39 # choose if more than one global score file entry for one player is allowed
40 # (default: MANY_PER_NAME)
41 # uncomment to install game in multi-user environment
42 # SCORE_ENTRIES = ONE_PER_NAME
43 # uncomment to install game in single-user environment (default)
44 # SCORE_ENTRIES = MANY_PER_NAME
46 # path for cross-compiling (only needed for non-native Windows build)
47 CROSS_PATH_WIN32 = /usr/local/cross-tools/i386-mingw32msvc
49 # compile special edition of R'n'D instead of the normal (classic) version
50 # SPECIAL_EDITION = rnd_jue
53 # -----------------------------------------------------------------------------
54 # there should be no need to change anything below
55 # -----------------------------------------------------------------------------
57 .EXPORT_ALL_VARIABLES:
60 MAKE_CMD = $(MAKE) -C $(SRC_DIR)
63 # -----------------------------------------------------------------------------
65 # -----------------------------------------------------------------------------
71 @$(MAKE_CMD) TARGET=sdl
74 @$(MAKE_CMD) TARGET=sdl2
77 @$(MAKE_CMD) PLATFORM=macosx
80 @$(MAKE_CMD) PLATFORM=macosx STATIC=true
83 @PATH=$(CROSS_PATH_WIN32)/bin:${PATH} $(MAKE_CMD) PLATFORM=cross-win32
89 @$(MAKE_CMD) clean-git
92 # -----------------------------------------------------------------------------
93 # development, test, distribution build and packaging targets
94 # -----------------------------------------------------------------------------
97 @$(MAKE_CMD) auto-conf
106 @$(MAKE_CMD) valgrind
109 ./Scripts/make_enginetest.sh
111 enginetestcustom: all
112 ./Scripts/make_enginetest.sh custom
115 ./Scripts/make_enginetest.sh fast
118 ./Scripts/make_enginetest.sh new
121 ./Scripts/make_enginetest.sh leveltest
123 levelsketch_images: all
124 ./Scripts/make_levelsketch_images.sh
127 ./Scripts/make_backup.sh src tar
130 ./Scripts/make_backup.sh src scp
132 backup-all: backup backup-net-copy
135 ./Scripts/make_backup.sh lev
138 ./Scripts/make_backup.sh gfx
141 # ./Scripts/make_prerelease.sh
144 @$(MAKE) SPECIAL_EDITION=rnd_jue all
147 @$(MAKE) SPECIAL_EDITION=rnd_jue cross-win32
150 @$(MAKE_CMD) dist-clean
153 @BUILD_DIST=TRUE $(MAKE)
156 @BUILD_DIST=TRUE $(MAKE) cross-win32
159 # (this is done by "dist-package-macosx" target)
161 dist-build-macosx-ppc:
162 # (this is done by "dist-package-macosx-ppc" target)
165 ./Scripts/make_dist.sh unix .
168 ./Scripts/make_dist.sh win .
171 ./Scripts/make_dist.sh mac . $(MAKE)
173 dist-package-macosx-ppc:
174 ./Scripts/make_dist.sh mac-ppc . $(MAKE)
177 ./Scripts/make_dist.sh unix . upload
180 ./Scripts/make_dist.sh win . upload
183 ./Scripts/make_dist.sh mac . upload
185 dist-upload-macosx-ppc:
186 ./Scripts/make_dist.sh mac-ppc . upload
190 $(MAKE) dist-build-unix ; $(MAKE) dist-clean
191 $(MAKE) dist-build-win32 ; $(MAKE) dist-clean
194 $(MAKE) dist-package-unix
195 $(MAKE) dist-package-win32
196 $(MAKE) dist-package-macosx
197 $(MAKE) dist-package-macosx-ppc
200 $(MAKE) dist-upload-unix
201 $(MAKE) dist-upload-win32
202 $(MAKE) dist-upload-macosx
203 $(MAKE) dist-upload-macosx-ppc
205 dist-all: dist-build-all dist-package-all
207 upload-all: dist-upload-all