X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=Makefile;h=2ea6579c876669d96f1c4c85e04d36b94b5f4c88;hb=a8b2caa1d373c84c1b3fc2f615370c2a319051ca;hp=d1bc33a88cd5de0f12740b02e3587fd2313db003;hpb=c8dd3c1abd6a1daf4f7431a59db721ae7fba3d17;p=rocksndiamonds.git diff --git a/Makefile b/Makefile index d1bc33a8..2ea6579c 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ #=============================================================================# -# Makefile for Rocks'n'Diamonds 1.4.0 # -# (c) 1995-1999 Holger Schemel, aeglos@valinor.owl.de # +# Makefile for Rocks'n'Diamonds # +# (c) 1995-2000 Holger Schemel, info@artsoft.org # #=============================================================================# #-----------------------------------------------------------------------------# @@ -10,15 +10,9 @@ # 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 +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 @@ -41,6 +35,9 @@ CC = gcc # when installing the game in a single user environment, choose this # SCORE_ENTRIES = MANY_PER_NAME +# specify path for cross-compiling (only needed for Win32 build) +CROSS_PATH=/usr/local/cross-tools/i386-mingw32/bin + #-----------------------------------------------------------------------------# # you should not need to change anything below # #-----------------------------------------------------------------------------# @@ -50,16 +47,28 @@ CC = gcc MAKE = make SRC_DIR = src -MAKE_CMD = @$(MAKE) -C $(SRC_DIR) +MAKE_CMD = $(MAKE) -C $(SRC_DIR) all: - $(MAKE_CMD) + @$(MAKE_CMD) TARGET=sdl + +x11: + @$(MAKE_CMD) TARGET=x11 + +sdl: + @$(MAKE_CMD) TARGET=sdl solaris: - $(MAKE_CMD) PLATFORM=solaris + @$(MAKE_CMD) PLATFORM=solaris + +msdos: + @$(MAKE_CMD) PLATFORM=msdos + +win32: + @PATH=$(CROSS_PATH):${PATH} $(MAKE_CMD) PLATFORM=win32 clean: - $(MAKE_CMD) clean + @$(MAKE_CMD) clean #-----------------------------------------------------------------------------# @@ -78,10 +87,10 @@ backup_gfx: dist-unix: ./Scripts/make_dist.sh unix . -dist-dos: +dist-msdos: ./Scripts/make_dist.sh dos . -dist: dist-unix dist-dos +dist: dist-unix dist-msdos -depend: +depend dep: $(MAKE_CMD) depend