X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=Makefile;h=0496dc3c38b4eee1d8f826081b0075f1df459ac0;hb=refs%2Ftags%2F2.1.0;hp=82094534cd33948f2521947f2d821e5c77f5184e;hpb=4bca9bc5f299a9b287134b06e41b147f506792b4;p=rocksndiamonds.git diff --git a/Makefile b/Makefile index 82094534..0496dc3c 100644 --- a/Makefile +++ b/Makefile @@ -1,18 +1,22 @@ #=============================================================================# # Makefile for Rocks'n'Diamonds # -# (c) 1995-2000 Holger Schemel, info@artsoft.org # +# (c) 1995-2002 Holger Schemel, info@artsoft.org # #=============================================================================# #-----------------------------------------------------------------------------# # configuration section # #-----------------------------------------------------------------------------# -# specify your favorite ANSI C compiler +# specify 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 +# (this must be set to "gmake" for some systems) +MAKE = make + # specify path to X11 on your system -# if undefined, use system defaults (works with Linux/gcc/libc5) -X11_PATH = /usr/X11 +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 @@ -25,9 +29,6 @@ X11_PATH = /usr/X11 # 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 @@ -45,13 +46,11 @@ CROSS_PATH_WIN32=/usr/local/cross-tools/i386-mingw32msvc .EXPORT_ALL_VARIABLES: -MAKE = make - SRC_DIR = src MAKE_CMD = $(MAKE) -C $(SRC_DIR) all: - @$(MAKE_CMD) TARGET=sdl + @$(MAKE_CMD) TARGET=x11 x11: @$(MAKE_CMD) TARGET=x11 @@ -60,7 +59,13 @@ sdl: @$(MAKE_CMD) TARGET=sdl solaris: - @$(MAKE_CMD) PLATFORM=solaris + @$(MAKE_CMD) PLATFORM=solaris TARGET=x11 + +solaris-sdl: + @$(MAKE_CMD) PLATFORM=solaris TARGET=sdl + +mac: + @$(MAKE_CMD) PLATFORM=macosx msdos: @$(MAKE_CMD) PLATFORM=msdos @@ -79,6 +84,9 @@ clean: # development only stuff # #-----------------------------------------------------------------------------# +run: + @$(MAKE_CMD) TARGET=x11 && ./rocksndiamonds --verbose + backup: ./Scripts/make_backup.sh src @@ -94,7 +102,22 @@ dist-unix: dist-msdos: ./Scripts/make_dist.sh dos . -dist: dist-unix dist-msdos +dist-win32: + ./Scripts/make_dist.sh win . + +dist-macosx: + ./Scripts/make_dist.sh mac . $(MAKE) + +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-all: dist-build-all dist-unix dist-msdos dist-win32 dist-macosx depend dep: $(MAKE_CMD) depend