From: Roland McGrath Date: Fri, 10 Sep 1993 04:47:05 +0000 (+0000) Subject: (ALL_CFLAGS, CPP_CFLAGS): Put -I. -I../src before -I${srcdir} X-Git-Tag: emacs-19.34~11163 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b2d7a9c72052ab2d8989362a669d0921a4266a77;p=emacs.git (ALL_CFLAGS, CPP_CFLAGS): Put -I. -I../src before -I${srcdir} -I${srcdir}/../src. --- 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 \ ### HAVE_CONFIG_H #defined before they know they can take advantage of ### the information in ../src/config.h. ALL_CFLAGS = ${C_SWITCH_SYSTEM} -Demacs -DHAVE_CONFIG_H \ - -I${srcdir} -I${srcdir}/../src -I. -I../src ${CFLAGS} + -I. -I../src -I${srcdir} -I${srcdir}/../src ${CFLAGS} CPP_CFLAGS = ${C_SWITCH_SYSTEM} -Demacs -DHAVE_CONFIG_H \ - -I${srcdir} -I${srcdir}/../src -I. -I../src ${CPPFLAGS} ${CFLAGS} + -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS} # This is the default compilation command. # But we should never rely on it, because some make version # failed to find it for getopt.o. Using an explicit command made it work.