From 4ade9c0d73ba18d29c3b976c3589cb8e3287070d Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Wed, 10 Oct 2001 23:28:51 +0000 Subject: [PATCH] * src/gnome-utils/Makefile.am (CFLAGS): move INCLUDES bits to CFLAGS. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@5549 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/gnome-utils/Makefile.am | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/src/gnome-utils/Makefile.am b/src/gnome-utils/Makefile.am index 669e745292..a2d56a8ac4 100644 --- a/src/gnome-utils/Makefile.am +++ b/src/gnome-utils/Makefile.am @@ -2,22 +2,19 @@ SUBDIRS = . test pkglib_LTLIBRARIES = libgncmod-gnome-utils.la -CFLAGS = @CFLAGS@ ${GLIB_CFLAGS} ${GNOME_PRINT_CFLAGS} - -#FIXME remove the following deps -# -I${top_srcdir}/src \ -# -I${top_srcdir}/src/gnome \ - -INCLUDES = \ +CFLAGS = \ + @CFLAGS@ \ -I${top_srcdir}/src/gnc-module \ -I${top_srcdir}/src/engine \ -I${top_srcdir}/src/network-utils \ -I${top_srcdir}/src/app-utils \ -I${top_srcdir}/src \ -I${top_srcdir}/src/gnome \ - ${GNOME_INCLUDEDIR} \ ${GUILE_INCS} \ - ${GUPPI_CFLAGS} + ${GUPPI_CFLAGS} \ + ${GLIB_CFLAGS} \ + ${GNOME_PRINT_CFLAGS} \ + ${GNOME_INCLUDEDIR} libgncmod_gnome_utils_la_SOURCES = \ cursors.c \