projects
/
rocksndiamonds.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
c8dd3c1
)
rocksndiamonds-1.4.0
author
Holger Schemel
<info@artsoft.org>
Wed, 27 Oct 1999 08:58:04 +0000
(10:58 +0200)
committer
Holger Schemel
<info@artsoft.org>
Sat, 30 Aug 2014 08:34:38 +0000
(10:34 +0200)
Makefile
patch
|
blob
|
history
src/Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index d1bc33a88cd5de0f12740b02e3587fd2313db003..d8c400de583e62e06c42487315345bd092fd5548 100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-18,7
+18,7
@@
CC = gcc
# specify path to X11 on your system
# if undefined, use system defaults (works with Linux/gcc/libc5)
# 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
# specify directory for read-only game data (like graphics, sounds, levels)
# default is '.', so you can play without installing game data somewhere
@@
-60,28
+60,3
@@
solaris:
clean:
$(MAKE_CMD) clean
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-dos:
- ./Scripts/make_dist.sh dos .
-
-dist: dist-unix dist-dos
-
-depend:
- $(MAKE_CMD) depend
diff --git
a/src/Makefile
b/src/Makefile
index f9c1e232a04432d805a85ce34c5ba5ed78372b95..2be4220a3589872a6d424ee28cd257aeacaf9ca0 100644
(file)
--- a/
src/Makefile
+++ b/
src/Makefile
@@
-58,10
+58,10
@@
CONFIG_GAME_DIR = $(CONFIG_RO_GAME_DIR) $(CONFIG_RW_GAME_DIR)
CONFIG = $(CONFIG_GAME_DIR) $(CONFIG_SCORE_ENTRIES) $(SOUNDS) $(JOYSTICK)
# OPTIONS = -DDEBUG -g -Wall -ansi -pedantic # only for debugging purposes
CONFIG = $(CONFIG_GAME_DIR) $(CONFIG_SCORE_ENTRIES) $(SOUNDS) $(JOYSTICK)
# OPTIONS = -DDEBUG -g -Wall -ansi -pedantic # only for debugging purposes
-
OPTIONS = -DDEBUG -g -Wall
# only for debugging purposes
+
# OPTIONS = -DDEBUG -g -Wall
# only for debugging purposes
# OPTIONS = -O3 -Wall -ansi -pedantic
# OPTIONS = -O3 -Wall
# OPTIONS = -O3 -Wall -ansi -pedantic
# OPTIONS = -O3 -Wall
-
#
OPTIONS = -O3
+OPTIONS = -O3
# SYSTEM = -DSYSV -Ae # may be needed for HP-UX
# SYSTEM = -DSYSV -Ae # may be needed for HP-UX
@@
-120,15
+120,3
@@
$(PROGNAME): $(OBJS)
clean:
$(RM) *.o
$(RM) $(PROGNAME)
clean:
$(RM) *.o
$(RM) $(PROGNAME)
-
-
-#-----------------------------------------------------------------------------#
-# development only stuff #
-#-----------------------------------------------------------------------------#
-
-depend:
- for i in $(SRCS); do $(CPP) $(CFLAGS) -M $$i; done > .depend
-
-ifeq (.depend,$(wildcard .depend))
-include .depend
-endif