summaryrefslogtreecommitdiff
path: root/lib-src
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-05-15 22:25:51 +0000
committerJim Blandy <jimb@redhat.com>1993-05-15 22:25:51 +0000
commitc38a040d4a3a1bc794a361d67e9aefc10c68cff4 (patch)
treee87e78c3c391eb72949c533e86b8acc191799f28 /lib-src
parent0d73e8e39ca9aa38a369af684d8fddf063ec2f78 (diff)
downloademacs-c38a040d4a3a1bc794a361d67e9aefc10c68cff4.tar.gz
The GNU coding standards specify that CFLAGS should be left for
users to set. * Makefile.in (CFLAGS): Put this in the "things configure might edit" section, and have it default to -g. (ALL_CFLAGS): New variable, set to all the flags which should be passed to compilations. Replace all other uses of CFLAGS with ALL_CFLAGS. (.c.o): New rule, to pass ALL_CFLAGS to compilations. * Makefile.in (DEFS): Remove this; it's always just going to be "-DHAVE_CONFIG_H -Demacs". * Makefile.in (ALLOCA): New variable, whose value we should inherit from the top-level makefile. (etags, ctags): Include ALLOCA in the list of object files that these executables depend on and link.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/Makefile.in57
1 files changed, 30 insertions, 27 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in
index 3d97f17aab2..e38f7d53fee 100644
--- a/lib-src/Makefile.in
+++ b/lib-src/Makefile.in
@@ -15,7 +15,8 @@ SHELL = /bin/sh
# ==================== Things `configure' might edit ====================
CC=cc
-DEFS=-g
+CFLAGS=-g
+ALLOCA=
C_SWITCH_SYSTEM=
LOADLIBES=
version=version-not-set
@@ -101,7 +102,9 @@ SOURCES = COPYING ChangeLog Makefile.in README aixcc.lex emacs.csh \
### Some other files - those shared with other GNU utilities - need
### HAVE_CONFIG_H #defined before they know they can take advantage of
### the information in ../src/config.h.
-CFLAGS=${DEFS} ${C_SWITCH_SYSTEM} -Demacs -DHAVE_CONFIG_H -I../src
+ALL_CFLAGS = ${C_SWITCH_SYSTEM} -Demacs -DHAVE_CONFIG_H -I../src ${CFLAGS}
+.c.o:
+ ${CC} -c ${CPPFLAGS} ${ALL_CFLAGS} $<
all: ${EXECUTABLES}
@@ -180,91 +183,91 @@ test-distrib: ${srcdir}/test-distrib.c
$(CC) -o test-distrib ${srcdir}/test-distrib.c
./test-distrib ${srcdir}/testfile
-GETOPTOBJS = getopt.o getopt1.o
+GETOPTOBJS = getopt.o getopt1.o $(ALLOCA)
GETOPTDEPS = $(GETOPTOBJS) ${srcdir}/getopt.h
getopt.o: getopt.c getopt.h
getopt1.o: getopt1.c getopt.h
etags: ${srcdir}/etags.c $(GETOPTDEPS)
- $(CC) ${CFLAGS} -DETAGS ${srcdir}/etags.c $(GETOPTOBJS) $(LOADLIBES) -o etags
+ $(CC) ${ALL_CFLAGS} -DETAGS ${srcdir}/etags.c $(GETOPTOBJS) $(LOADLIBES) -o etags
ctags: ${srcdir}/etags.c $(GETOPTDEPS)
- $(CC) ${CFLAGS} -DCTAGS ${srcdir}/etags.c $(GETOPTOBJS) $(LOADLIBES) -o ctags
+ $(CC) ${ALL_CFLAGS} -DCTAGS ${srcdir}/etags.c $(GETOPTOBJS) $(LOADLIBES) -o ctags
wakeup: ${srcdir}/wakeup.c
- $(CC) ${CFLAGS} ${srcdir}/wakeup.c $(LOADLIBES) -o wakeup
+ $(CC) ${ALL_CFLAGS} ${srcdir}/wakeup.c $(LOADLIBES) -o wakeup
make-docfile: ${srcdir}/make-docfile.c
- $(CC) ${CFLAGS} ${srcdir}/make-docfile.c $(LOADLIBES) -o make-docfile
+ $(CC) ${ALL_CFLAGS} ${srcdir}/make-docfile.c $(LOADLIBES) -o make-docfile
digest-doc: ${srcdir}/digest-doc.c
- $(CC) ${CFLAGS} ${srcdir}/digest-doc.c $(LOADLIBES) -o digest-doc
+ $(CC) ${ALL_CFLAGS} ${srcdir}/digest-doc.c $(LOADLIBES) -o digest-doc
sorted-doc: ${srcdir}/sorted-doc.c
- $(CC) ${CFLAGS} ${srcdir}/sorted-doc.c $(LOADLIBES) -o sorted-doc
+ $(CC) ${ALL_CFLAGS} ${srcdir}/sorted-doc.c $(LOADLIBES) -o sorted-doc
b2m: ${srcdir}/b2m.c ../src/config.h
- $(CC) -I${srcdir}/../src ${CFLAGS} ${srcdir}/b2m.c $(LOADLIBES) -o b2m
+ $(CC) -I${srcdir}/../src ${ALL_CFLAGS} ${srcdir}/b2m.c $(LOADLIBES) -o b2m
movemail: ${srcdir}/movemail.c ../src/config.h
- $(CC) -I${srcdir}/../src ${CFLAGS} ${srcdir}/movemail.c $(LOADLIBES) -o movemail
+ $(CC) -I${srcdir}/../src ${ALL_CFLAGS} ${srcdir}/movemail.c $(LOADLIBES) -o movemail
cvtmail: ${srcdir}/cvtmail.c
- $(CC) ${CFLAGS} ${srcdir}/cvtmail.c $(LOADLIBES) -o cvtmail
+ $(CC) ${ALL_CFLAGS} ${srcdir}/cvtmail.c $(LOADLIBES) -o cvtmail
fakemail: ${srcdir}/fakemail.c ../src/config.h
- $(CC) -I${srcdir}/../src ${CFLAGS} ${srcdir}/fakemail.c $(LOADLIBES) -o fakemail
+ $(CC) -I${srcdir}/../src ${ALL_CFLAGS} ${srcdir}/fakemail.c $(LOADLIBES) -o fakemail
yow: ${srcdir}/yow.c ../src/paths.h
- $(CC) ${CFLAGS} ${srcdir}/yow.c $(LOADLIBES) -o yow
+ $(CC) ${ALL_CFLAGS} ${srcdir}/yow.c $(LOADLIBES) -o yow
env: ${srcdir}/env.c ../src/config.h
- $(CC) -DEMACS -I${srcdir}/../src ${CFLAGS} ${srcdir}/env.c $(LOADLIBES) -o env
+ $(CC) -DEMACS -I${srcdir}/../src ${ALL_CFLAGS} ${srcdir}/env.c $(LOADLIBES) -o env
emacsserver: ${srcdir}/emacsserver.c ../src/config.h
- $(CC) -I${srcdir}/../src ${CFLAGS} ${srcdir}/emacsserver.c $(LOADLIBES) -o emacsserver
+ $(CC) -I${srcdir}/../src ${ALL_CFLAGS} ${srcdir}/emacsserver.c $(LOADLIBES) -o emacsserver
emacsclient: ${srcdir}/emacsclient.c ../src/config.h
- $(CC) -I${srcdir}/../src ${CFLAGS} ${srcdir}/emacsclient.c $(LOADLIBES) -o emacsclient
+ $(CC) -I${srcdir}/../src ${ALL_CFLAGS} ${srcdir}/emacsclient.c $(LOADLIBES) -o emacsclient
hexl: ${srcdir}/hexl.c
- $(CC) ${CFLAGS} ${srcdir}/hexl.c $(LOADLIBES) -o hexl
+ $(CC) ${ALL_CFLAGS} ${srcdir}/hexl.c $(LOADLIBES) -o hexl
getdate.o: ${srcdir}/getdate.y ../src/config.h
${YACC} ${YFLAGS} ${srcdir}/getdate.y
- $(CC) -I${srcdir}/../src $(CFLAGS) -c y.tab.c
+ $(CC) -I${srcdir}/../src $(ALL_CFLAGS) -c y.tab.c
mv y.tab.o getdate.o
timer.o: ${srcdir}/timer.c ../src/config.h
- $(CC) -c -I${srcdir}/../src $(CFLAGS) ${srcdir}/timer.c
+ $(CC) -c -I${srcdir}/../src $(ALL_CFLAGS) ${srcdir}/timer.c
timer: getdate.o timer.o
- $(CC) -I${srcdir}/../src $(CFLAGS) getdate.o timer.o -o timer
+ $(CC) -I${srcdir}/../src $(ALL_CFLAGS) getdate.o timer.o -o timer
make-path: ${srcdir}/make-path.c
- $(CC) $(CFLAGS) ${srcdir}/make-path.c -o make-path
+ $(CC) $(ALL_CFLAGS) ${srcdir}/make-path.c -o make-path
# These are NOT included in INSTALLABLES or UTILITIES.
# See ../src/ymakefile.
emacstool: ${srcdir}/emacstool.c
- $(CC) ${srcdir}/emacstool.c -o emacstool ${CFLAGS} \
+ $(CC) ${srcdir}/emacstool.c -o emacstool ${ALL_CFLAGS} \
-lsuntool -lsunwindow -lpixrect $(LOADLIBES)
# For SUN Japanese Language Environment
nemacstool: ${srcdir}/emacstool.c
- $(CC) -o nemacstool -DJLE ${CFLAGS} ${srcdir}/emacstool.c \
+ $(CC) -o nemacstool -DJLE ${ALL_CFLAGS} ${srcdir}/emacstool.c \
-lsuntool -lmle -lsunwindow -lpixrect $(LOADLIBES)
xvetool: ${srcdir}/emacstool.c
- $(CC) -o xvetool -DXVIEW ${CFLAGS} ${srcdir}/emacstool.c \
+ $(CC) -o xvetool -DXVIEW ${ALL_CFLAGS} ${srcdir}/emacstool.c \
-lxview -lX -I$(OPENWINHOME)/include -L$(OPENWINHOME)/lib \
$(LOADLIBES)
xveterm: ${srcdir}/emacstool.c
- $(CC) -o xveterm -DXVIEW -DTTERM ${CFLAGS} ${srcdir}/emacstool.c \
+ $(CC) -o xveterm -DXVIEW -DTTERM ${ALL_CFLAGS} ${srcdir}/emacstool.c \
-lxview -lolgx -lX -I$(OPENWINHOME)/include -L$(OPENWINHOME)/lib \
$(LOADLIBES)
aixcc: ${srcdir}/aixcc.c
- $(CC) $(CFLAGS) -o aixcc ${srcdir}/aixcc.c
+ $(CC) $(ALL_CFLAGS) -o aixcc ${srcdir}/aixcc.c
aixcc.c: ${srcdir}/aixcc.lex
lex ${srcdir}/aixcc.lex