aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/Makefile.am40
1 files changed, 13 insertions, 27 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index b8e33533e..809121483 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -1,40 +1,26 @@
-NULL =
-
noinst_PROGRAMS = \
testephysearchentry \
- testephyiconentry \
- $(NULL)
-
-testephysearchentry_SOURCES = \
- testephysearchentry.c \
- $(NULL)
+ testephyiconentry
-testephysearchentry_CPPFLAGS = \
- -I$(top_srcdir)/lib/widgets \
- -I$(top_builddir)/lib/widgets \
- $(AM_CPPFLAGS)
+INCLUDES = \
+ -I$(top_builddir)/lib/widgets
-testephysearchentry_CFLAGS = \
+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 \
- $(NULL)
-
-testephyiconentry_CPPFLAGS = \
- -I$(top_srcdir)/lib/widgets \
- -I$(top_builddir)/lib/widgets \
- $(AM_CPPFLAGS)
-
-testephyiconentry_CFLAGS = \
- $(DEPENDENCIES_CFLAGS) \
- $(AM_CFLAGS)
-
+ testephyiconentry.c
testephyiconentry_LDADD = \
$(top_builddir)/lib/widgets/libephywidgets.la \
- $(DEPENDENCIES_LIBS)
+ $(DEPENDENCIES_LIBS)
+