29e4d5d0b8
honor CFLAGS, PREFIX. BUILD_DEPENDS -> LIB_DEPENDS on gdbm. PR: 24546 Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp> add missing MAINTAINER.
32 lines
924 B
Plaintext
32 lines
924 B
Plaintext
--- Makefile.in.orig Fri Nov 6 11:06:00 1998
|
|
+++ Makefile.in Mon Jan 22 23:27:55 2001
|
|
@@ -8,8 +8,10 @@
|
|
VPATH = @srcdir@
|
|
BIN = ../game/bin
|
|
CC = @CC@
|
|
+CFLAGS= @CFLAGS@
|
|
# CPP = @CPP@ # This is broken in autoconf. Sigh.
|
|
CPP = $(CC) -E
|
|
+CPPFLAGS = @CPPFLAGS@
|
|
LIBS = @LIBS@
|
|
LIBOBJS = @LIBOBJS@
|
|
|
|
@@ -18,7 +20,7 @@
|
|
# gmon.out)
|
|
#OPTIM = -O
|
|
#OPTIM = -g -pg -O
|
|
-OPTIM = -g -O
|
|
+#OPTIM = -g -O
|
|
|
|
# The first set of definitions is for disk-based caching. If you wish to be
|
|
# memory based, comment the first set and uncomment the second set. Being
|
|
@@ -170,7 +172,7 @@
|
|
LIB_SRC =
|
|
LIB_INC =
|
|
DEBUG = $(OPTIM)
|
|
-ALLCFLAGS = $(CFLAGS) $(DEBUG) $(DEFS) $(COMPRESS_DEFS) $(BASED) $(MALLOC_DEFS) $(CONC_DEFS) $(MOREDEFS) $(RLIM_F)
|
|
+ALLCFLAGS = $(CFLAGS) $(CPPFLAGS) $(DEBUG) $(DEFS) $(COMPRESS_DEFS) $(BASED) $(MALLOC_DEFS) $(CONC_DEFS) $(MOREDEFS) $(RLIM_F)
|
|
|
|
#Auxiliary files
|
|
A_INST = README NOTES HIGHLIGHTS CREDITS CHANGES
|