aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorRoland McGrath1993-09-10 04:47:05 +0000
committerRoland McGrath1993-09-10 04:47:05 +0000
commitb2d7a9c72052ab2d8989362a669d0921a4266a77 (patch)
treebe245c08ba1867664b2a5777cc3c1a703d164cfc /lib-src
parente0dd62f616e4ca52798477c5488a6d66941d0941 (diff)
downloademacs-b2d7a9c72052ab2d8989362a669d0921a4266a77.tar.gz
emacs-b2d7a9c72052ab2d8989362a669d0921a4266a77.zip
(ALL_CFLAGS, CPP_CFLAGS): Put -I. -I../src before -I${srcdir}
-I${srcdir}/../src.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in
index ffb1ee097d0..62eb8840f76 100644
--- a/lib-src/Makefile.in
+++ b/lib-src/Makefile.in
@@ -105,9 +105,9 @@ SOURCES = COPYING ChangeLog Makefile.in README aixcc.lex emacs.csh \
105### HAVE_CONFIG_H #defined before they know they can take advantage of 105### HAVE_CONFIG_H #defined before they know they can take advantage of
106### the information in ../src/config.h. 106### the information in ../src/config.h.
107ALL_CFLAGS = ${C_SWITCH_SYSTEM} -Demacs -DHAVE_CONFIG_H \ 107ALL_CFLAGS = ${C_SWITCH_SYSTEM} -Demacs -DHAVE_CONFIG_H \
108 -I${srcdir} -I${srcdir}/../src -I. -I../src ${CFLAGS} 108 -I. -I../src -I${srcdir} -I${srcdir}/../src ${CFLAGS}
109CPP_CFLAGS = ${C_SWITCH_SYSTEM} -Demacs -DHAVE_CONFIG_H \ 109CPP_CFLAGS = ${C_SWITCH_SYSTEM} -Demacs -DHAVE_CONFIG_H \
110 -I${srcdir} -I${srcdir}/../src -I. -I../src ${CPPFLAGS} ${CFLAGS} 110 -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS}
111# This is the default compilation command. 111# This is the default compilation command.
112# But we should never rely on it, because some make version 112# But we should never rely on it, because some make version
113# failed to find it for getopt.o. Using an explicit command made it work. 113# failed to find it for getopt.o. Using an explicit command made it work.