From 097cc187474c6c2fea5753ed9263644d916ac175 Mon Sep 17 00:00:00 2001 From: Kim Woelders Date: Wed, 14 May 2003 19:34:31 +0000 Subject: [PATCH] Avoid compiler warnings due to include path (/usr/include) that shouldn't be given explicitly and remove unnecessary include paths. SVN revision: 6907 --- dox/Makefile.am | 2 +- eesh/Makefile.am | 2 +- epp/Makefile.am | 2 +- src/Makefile.am | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dox/Makefile.am b/dox/Makefile.am index 7d3aae4c..cf4fad46 100644 --- a/dox/Makefile.am +++ b/dox/Makefile.am @@ -21,7 +21,7 @@ dox_SOURCES = \ LDADD = $(TTF_LIBS) $(FNLIB_LIBS) $(IMLIB_LIBS) $(XINERAMA_LIBS) -lm -INCLUDES=-I$(top_srcdir) $(IMLIB_CFLAGS) -I$(includedir) -I.. -I/usr/include/freetype1 +INCLUDES=$(IMLIB_CFLAGS) DEFS=-DENLIGHTENMENT_ROOT=\"@ENLIGHTENMENT_ROOT@\" -DENLIGHTENMENT_BIN=\"@ENLIGHTENMENT_BIN@\" diff --git a/eesh/Makefile.am b/eesh/Makefile.am index 92e662e2..268edabc 100644 --- a/eesh/Makefile.am +++ b/eesh/Makefile.am @@ -14,7 +14,7 @@ eesh_SOURCES = \ LDADD = $(X_PRE_LIBS) $(X_LIBS) -lX11 $(X_EXTRA_LIBS) -lm -INCLUDES=-I$(top_srcdir) $(IMLIB_CFLAGS) -I$(includedir) -I.. +INCLUDES=$(IMLIB_CFLAGS) DEFS=-DENLIGHTENMENT_ROOT=\"@ENLIGHTENMENT_ROOT@\" diff --git a/epp/Makefile.am b/epp/Makefile.am index 8f1ab884..2c30e2b0 100644 --- a/epp/Makefile.am +++ b/epp/Makefile.am @@ -31,7 +31,7 @@ epp_SOURCES = \ cpplib.c \ cppmain.c -INCLUDES=-I$(top_srcdir) -I$(top_builddir) -I$(includedir) +INCLUDES= DEFS= \ -DHAVE_STRERROR \ diff --git a/src/Makefile.am b/src/Makefile.am index 74a62ac6..9d1a3314 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -104,7 +104,7 @@ LDADD = \ $(XINERAMA_LIBS) \ -lm -INCLUDES=-I$(top_srcdir) $(ESD_CFLAGS) $(IMLIB_CFLAGS) -I$(includedir) -I.. -I../intl -I$(top_srcdir)/intl -I/usr/include/freetype1 +INCLUDES=$(ESD_CFLAGS) $(IMLIB_CFLAGS) -I$(top_srcdir)/intl DEFS=-DENLIGHTENMENT_ROOT=\"@ENLIGHTENMENT_ROOT@\" -DENLIGHTENMENT_BIN=\"@ENLIGHTENMENT_BIN@\" -DLOCALEDIR=\"@LOCALEDIR@\"