X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=Makefile;h=ba4919350141d08f5c9e2e27359db0935b256cd3;hb=38c26472a6e9f0f037ddfe535d3919c00772b26f;hp=3794cd878840e9bb6928fe6e8690ea0dc2dcdf2e;hpb=efd0d0abb853018aa3ccc3c727b39bd7f5ba679d;p=rocksndiamonds.git diff --git a/Makefile b/Makefile index 3794cd87..ba491935 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 @@ -42,13 +46,14 @@ CROSS_PATH_WIN32=/usr/local/cross-tools/i386-mingw32msvc .EXPORT_ALL_VARIABLES: -MAKE = make - SRC_DIR = src MAKE_CMD = $(MAKE) -C $(SRC_DIR) +DEFAULT_TARGET = x11 +# DEFAULT_TARGET = sdl + all: - @$(MAKE_CMD) TARGET=x11 + @$(MAKE_CMD) TARGET=$(DEFAULT_TARGET) x11: @$(MAKE_CMD) TARGET=x11 @@ -62,6 +67,9 @@ solaris: solaris-sdl: @$(MAKE_CMD) PLATFORM=solaris TARGET=sdl +mac: + @$(MAKE_CMD) PLATFORM=macosx + msdos: @$(MAKE_CMD) PLATFORM=msdos @@ -79,6 +87,25 @@ clean: # development only stuff # #-----------------------------------------------------------------------------# +auto-conf: + ./Scripts/create_element_defs.pl --graphics > src/conf_gfx.h + ./Scripts/create_element_defs.pl --sounds > src/conf_snd.h + ./Scripts/create_element_defs.pl --chars > src/conf_chr.c + ./Scripts/create_element_defs.pl --custom > src/conf_cus.c + ./Scripts/create_element_defs.pl --el2gfx > src/conf_e2g.c + +run: + @$(MAKE_CMD) TARGET=$(DEFAULT_TARGET) && ./rocksndiamonds --verbose + +gdb: + @$(MAKE_CMD) TARGET=$(DEFAULT_TARGET) && gdb ./rocksndiamonds + +enginetest: + ./Scripts/make_enginetest.sh + +enginetestfast: + ./Scripts/make_enginetest.sh fast + backup: ./Scripts/make_backup.sh src @@ -97,6 +124,21 @@ dist-msdos: dist-win32: ./Scripts/make_dist.sh win . +dist-macosx: + ./Scripts/make_dist.sh mac . $(MAKE) + +upload-unix: + ./Scripts/make_dist.sh unix . upload + +upload-msdos: + ./Scripts/make_dist.sh dos . upload + +upload-win32: + ./Scripts/make_dist.sh win . upload + +upload-macosx: + ./Scripts/make_dist.sh mac . upload + dist-clean: @$(MAKE_CMD) dist-clean @@ -106,7 +148,9 @@ dist-build-all: @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-all: dist-build-all dist-unix dist-msdos dist-win32 dist-macosx + +upload-all: upload-unix upload-msdos upload-win32 upload-macosx depend dep: $(MAKE_CMD) depend