From cd4623f05c1b0999de14554e149815fcedfb2159 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Fri, 29 Aug 2008 17:20:38 +0000 Subject: Makefile fixes. svn path=/trunk/; revision=8439 --- tests/Makefile.am | 40 +++++++++++++++++++++++++++------------- 1 file changed, 27 insertions(+), 13 deletions(-) (limited to 'tests') diff --git a/tests/Makefile.am b/tests/Makefile.am index 809121483..b8e33533e 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,26 +1,40 @@ +NULL = + noinst_PROGRAMS = \ testephysearchentry \ - testephyiconentry + testephyiconentry \ + $(NULL) + +testephysearchentry_SOURCES = \ + testephysearchentry.c \ + $(NULL) -INCLUDES = \ - -I$(top_builddir)/lib/widgets +testephysearchentry_CPPFLAGS = \ + -I$(top_srcdir)/lib/widgets \ + -I$(top_builddir)/lib/widgets \ + $(AM_CPPFLAGS) -CFLAGS = \ +testephysearchentry_CFLAGS = \ $(DEPENDENCIES_CFLAGS) \ $(AM_CFLAGS) -LDADD = \ - $(DEPENDENCIES_LIBS) - -testephysearchentry_SOURCES = \ - testephysearchentry.c testephysearchentry_LDADD = \ $(top_builddir)/lib/widgets/libephywidgets.la \ - $(DEPENDENCIES_LIBS) + $(DEPENDENCIES_LIBS) testephyiconentry_SOURCES = \ - testephyiconentry.c + testephyiconentry.c \ + $(NULL) + +testephyiconentry_CPPFLAGS = \ + -I$(top_srcdir)/lib/widgets \ + -I$(top_builddir)/lib/widgets \ + $(AM_CPPFLAGS) + +testephyiconentry_CFLAGS = \ + $(DEPENDENCIES_CFLAGS) \ + $(AM_CFLAGS) + testephyiconentry_LDADD = \ $(top_builddir)/lib/widgets/libephywidgets.la \ - $(DEPENDENCIES_LIBS) - + $(DEPENDENCIES_LIBS) -- cgit v1.2.3