summaryrefslogtreecommitdiff
path: root/lib/am/compile.am
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2001-05-06 23:01:34 +0000
committerTom Tromey <tromey@redhat.com>2001-05-06 23:01:34 +0000
commit5bea838f9a448f3760f2d8a6e9423344219ac55b (patch)
tree80b86ca4788d47719caf4f2b9546713b2a2fe06e /lib/am/compile.am
parent3cc400234e3303d191d6e9184f096fa10a1bb163 (diff)
downloadautomake-5bea838f9a448f3760f2d8a6e9423344219ac55b.tar.gz
Fix for PR automake/132:
* automake.in (c, c++, objc, asm, ppf77): Add DEFAULT_INCLUDES to compilation. (java): Remove INCLUDES and DEFS from compilation. (lang_c_finish): Add DEFAULT_INCLUDES to compilation. * compile.am (DEFS): Don't include %DEFAULT_INCLUDES%. (DEFAULT_INCLUDES): New macro.
Diffstat (limited to 'lib/am/compile.am')
-rw-r--r--lib/am/compile.am3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/am/compile.am b/lib/am/compile.am
index 6f6909eb8..63b3d474d 100644
--- a/lib/am/compile.am
+++ b/lib/am/compile.am
@@ -17,7 +17,8 @@
## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
## 02111-1307, USA.
-DEFS = @DEFS@%DEFAULT_INCLUDES%
+DEFS = @DEFS@
+DEFAULT_INCLUDES = %DEFAULT_INCLUDES%
CPPFLAGS = @CPPFLAGS@
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@