X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=Makefile;h=3e80fafdb06b61c2b2bce6eb92d065fda7deb568;hp=4616aecbbd344b4813112dead55e56d8f016479c;hb=d4c11da68a7271553ca5591adfae54fd3b45011f;hpb=3d97e3d9c20a984e70dae5e63e7c5069fb136c91 diff --git a/Makefile b/Makefile index 4616aecb..3e80fafd 100644 --- a/Makefile +++ b/Makefile @@ -7,10 +7,42 @@ # 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 fine with Linux/gcc) +# X11_PATH = /usr/X11 + +# specify path to install game data (graphics, sounds, levels, scores) +# default is '.', so you can play without installing game data somewhere +# GAME_DIR = /usr/local/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 # #-----------------------------------------------------------------------------# +.EXPORT_ALL_VARIABLES: + MAKE = make SRC_DIR = src @@ -20,19 +52,8 @@ MAKE_CMD = @$(MAKE) -C $(SRC_DIR) all: $(MAKE_CMD) +solaris: + $(MAKE_CMD) PLATFORM=solaris + clean: $(MAKE_CMD) clean - -backup: - ./Scripts/make_backup.sh - -dist-unix: - ./Scripts/make_dist_unix.sh . - -dist-dos: - ./Scripts/make_dist_dos.sh . - -dist: dist-unix dist-dos - -depend: - $(MAKE_CMD) depend