X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=Makefile;h=d8c400de583e62e06c42487315345bd092fd5548;hp=23b693e5d8bce4846833526f6810d2740c7a7ea1;hb=a16126b0981ba82ddcd5f7b0f763bc4ce6aa9bdc;hpb=3dc317d10b44cc6b75db10ac194966ad8114d390 diff --git a/Makefile b/Makefile index 23b693e5..d8c400de 100644 --- a/Makefile +++ b/Makefile @@ -1,34 +1,62 @@ #=============================================================================# -# 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 + +# 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 + #-----------------------------------------------------------------------------# -# 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 -MV = mv -f - -MAKE_CMD = $(MAKE) -C $(SRC_DIR) +SRC_DIR = src +MAKE_CMD = @$(MAKE) -C $(SRC_DIR) all: $(MAKE_CMD) +solaris: + $(MAKE_CMD) PLATFORM=solaris + clean: $(MAKE_CMD) clean - -backup: - ./Scripts/make_backup.sh - -depend: - $(MAKE_CMD) depend