X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=Makefile;h=cf775274d67af633249720d5c09d13da35cfa659;hb=1150bdce04915bf329bd816307fb2507eba80e15;hp=10909b9667877a40052a6719fa20e75c2b5e78de;hpb=adebc3d223c1611d7c947adba6a8b34885033aec;p=rocksndiamonds.git diff --git a/Makefile b/Makefile index 10909b96..cf775274 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,13 +10,6 @@ # 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 -# PLATFORM = windows - # specify path to X11 on your system # if undefined, use system defaults (works with Linux/gcc/libc5) X11_PATH = /usr/X11 @@ -32,9 +25,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 @@ -42,8 +32,9 @@ X11_PATH = /usr/X11 # when installing the game in a single user environment, choose this # SCORE_ENTRIES = MANY_PER_NAME -# specify path for cross-compiling (only needed for Windows build) -CROSS_PATH=/usr/local/cross-tools/i386-mingw32/bin +# specify paths for cross-compiling (only needed for MS-DOS and Win32 build) +CROSS_PATH_MSDOS=/usr/local/cross-msdos/i386-msdosdjgpp +CROSS_PATH_WIN32=/usr/local/cross-tools/i386-mingw32msvc #-----------------------------------------------------------------------------# # you should not need to change anything below # @@ -65,14 +56,42 @@ x11: sdl: @$(MAKE_CMD) TARGET=sdl -sdl_old: - @$(MAKE_CMD) TARGET=sdl_old_10 - solaris: @$(MAKE_CMD) PLATFORM=solaris -windows: - @PATH=$(CROSS_PATH):${PATH} $(MAKE_CMD) PLATFORM=windows +msdos: + @$(MAKE_CMD) PLATFORM=msdos + +cross-msdos: + @PATH=$(CROSS_PATH_MSDOS)/bin:${PATH} $(MAKE_CMD) PLATFORM=cross-msdos + +cross-win32: + @PATH=$(CROSS_PATH_WIN32)/bin:${PATH} $(MAKE_CMD) PLATFORM=cross-win32 clean: @$(MAKE_CMD) clean + + +#-----------------------------------------------------------------------------# +# development only stuff # +#-----------------------------------------------------------------------------# + +backup: + ./Scripts/make_backup.sh src + +backup_lev: + ./Scripts/make_backup.sh lev + +backup_gfx: + ./Scripts/make_backup.sh gfx + +dist-unix: + ./Scripts/make_dist.sh unix . + +dist-msdos: + ./Scripts/make_dist.sh dos . + +dist: dist-unix dist-msdos + +depend dep: + $(MAKE_CMD) depend