From 40baf86a6717b4b292c1a22cb93cb3c8588d1d54 Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Wed, 10 Oct 2001 23:30:44 +0000 Subject: [PATCH] * src/optional/swig/Makefile.am (CFLAGS): move INCLUDES bits to CFLAGS. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@5561 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/optional/swig/Makefile.am | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/optional/swig/Makefile.am b/src/optional/swig/Makefile.am index 788849193c..99f3a84a44 100644 --- a/src/optional/swig/Makefile.am +++ b/src/optional/swig/Makefile.am @@ -1,5 +1,4 @@ - SWIG = swig docdir = ${GNC_DOC_INSTALL_DIR} @@ -29,15 +28,15 @@ EXTRA_DIST = \ gnucash-swig-defines.c # CFLAGS = @CFLAGS@ -Dbool=char -CFLAGS = @CFLAGS@ +CFLAGS = \ + @CFLAGS@ \ + -I@PERLINCL@/CORE \ + ${GNOME_INCLUDEDIR} \ + -I${top_srcdir}/src/engine # # technically, the engine is independent of the gnome libs, however, # we need to specify the inlcude path for glibconfig.h, and so this is the way -INCLUDES = \ - -I@PERLINCL@/CORE \ - ${GNOME_INCLUDEDIR} \ - -I${top_srcdir}/src/engine libgncswig_la_LIBADD = \ -lgncengine -lxml -lgnc_postgres \