X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=Makefile;h=93533d6d2b73778412439b0fda863c1c4660c195;hp=914925fe6f98f5e3a7f2c1265727d271601a603d;hb=8be31c2781126204470171aff7af45713ec42e9e;hpb=6ea6dac4068909e5adc06102dd215539c64afef8 diff --git a/Makefile b/Makefile index 914925fe..93533d6d 100644 --- a/Makefile +++ b/Makefile @@ -1,37 +1,103 @@ #=============================================================================# -# Makefile for Rocks'n'Diamonds 1.2 # -# (c) 1995-98 Holger Schemel, aeglos@valinor.owl.de # +# Makefile for Rocks'n'Diamonds 1.4.0 # +# (c) 1995-1999 Holger Schemel, aeglos@valinor.owl.de # #=============================================================================# #-----------------------------------------------------------------------------# # configuration section # #-----------------------------------------------------------------------------# +# specify your favorite ANSI C compiler +CC = gcc + +# explicitely choose your platform, if defaults doesn't work right +# needed for SUN/Solaris; Linux and DOS work fine with auto detection +# PLATFORM = solaris +# PLATFORM = unix +# PLATFORM = dos +# PLATFORM = windows + +# specify path to X11 on your system +# if undefined, use system defaults (works with Linux/gcc/libc5) +X11_PATH = /usr/X11 + +# 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 +# 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 +# SCORE_ENTRIES = ONE_PER_NAME +# when installing the game in a single user environment, choose this +# SCORE_ENTRIES = MANY_PER_NAME + +# specify path for cross-compiling (only needed for Windows build) +CROSS_PATH=/usr/local/cross-tools/i386-mingw32/bin + #-----------------------------------------------------------------------------# -# you shouldn't need to change anything below # +# you should not need to change anything below # #-----------------------------------------------------------------------------# -PROGNAME = rocksndiamonds -SRC_DIR = src +.EXPORT_ALL_VARIABLES: MAKE = make -RM = rm -f +SRC_DIR = src MAKE_CMD = $(MAKE) -C $(SRC_DIR) +all: + @$(MAKE_CMD) TARGET=sdl + +x11: + @$(MAKE_CMD) TARGET=x11 -all: $(PROGNAME) +sdl: + @$(MAKE_CMD) TARGET=sdl -$(PROGNAME): - $(MAKE_CMD) +sdl_old: + @$(MAKE_CMD) TARGET=sdl USE_SDL_OLD_LIBS=true + +solaris: + @$(MAKE_CMD) PLATFORM=solaris + +windows: + @PATH=$(CROSS_PATH):${PATH} $(MAKE_CMD) PLATFORM=windows clean: - $(MAKE_CMD) clean - $(RM) $(PROGNAME) + @$(MAKE_CMD) clean + + +#-----------------------------------------------------------------------------# +# development only stuff # +#-----------------------------------------------------------------------------# backup: - $(MAKE) clean - ./scripts/make_backup.sh + ./Scripts/make_backup.sh src + +backup_lev: + ./Scripts/make_backup.sh lev + +backup_gfx: + ./Scripts/make_backup.sh gfx + +dist-unix: + ./Scripts/make_dist.sh unix . + +dist-dos: + ./Scripts/make_dist.sh dos . + +dist: dist-unix dist-dos -depend: +depend dep: $(MAKE_CMD) depend