diff options
-rw-r--r-- | cxpm/Makefile.am | 3 | ||||
-rw-r--r-- | src/Makefile.am | 5 | ||||
-rw-r--r-- | sxpm/Makefile.am | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/cxpm/Makefile.am b/cxpm/Makefile.am index eea6dae..158facb 100644 --- a/cxpm/Makefile.am +++ b/cxpm/Makefile.am @@ -1,6 +1,7 @@ bin_PROGRAMS = cxpm -cxpm_CFLAGS = $(XPM_CFLAGS) -I$(top_srcdir)/src -I$(top_srcdir)/include/X11 +AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/include/X11 +AM_CFLAGS = $(XPM_CFLAGS) cxpm_SOURCES = cxpm.c diff --git a/src/Makefile.am b/src/Makefile.am index 2329daf..5dcdf03 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2,9 +2,8 @@ lib_LTLIBRARIES=libXpm.la -AM_CFLAGS = -I. \ - -I$(top_srcdir)/include/X11/ \ - $(XPM_CFLAGS) +AM_CPPFLAGS = -I. -I$(top_srcdir)/include/X11/ +AM_CFLAGS = $(XPM_CFLAGS) libXpm_la_LDFLAGS = -version-number 4:11:0 -no-undefined libXpm_la_LIBADD = $(XPM_LIBS) diff --git a/sxpm/Makefile.am b/sxpm/Makefile.am index 04571de..0b9771a 100644 --- a/sxpm/Makefile.am +++ b/sxpm/Makefile.am @@ -2,9 +2,9 @@ if BUILD_SXPM bin_PROGRAMS = sxpm -sxpm_CFLAGS = $(SXPM_CFLAGS) +AM_CFLAGS = $(SXPM_CFLAGS) -INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/include +AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include sxpm_SOURCES = sxpm.c |