diff options
author | Christian Persch <chpe@src.gnome.org> | 2008-08-30 01:20:38 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2008-08-30 01:20:38 +0800 |
commit | cd4623f05c1b0999de14554e149815fcedfb2159 (patch) | |
tree | b9248a1c9856525bd69485018a9cf4d66ddd144f /tests | |
parent | dbaa4d85a0a663765edf09359a34b77e4b62ecd2 (diff) | |
download | gsoc2013-epiphany-cd4623f05c1b0999de14554e149815fcedfb2159.tar gsoc2013-epiphany-cd4623f05c1b0999de14554e149815fcedfb2159.tar.gz gsoc2013-epiphany-cd4623f05c1b0999de14554e149815fcedfb2159.tar.bz2 gsoc2013-epiphany-cd4623f05c1b0999de14554e149815fcedfb2159.tar.lz gsoc2013-epiphany-cd4623f05c1b0999de14554e149815fcedfb2159.tar.xz gsoc2013-epiphany-cd4623f05c1b0999de14554e149815fcedfb2159.tar.zst gsoc2013-epiphany-cd4623f05c1b0999de14554e149815fcedfb2159.zip |
Makefile fixes.
svn path=/trunk/; revision=8439
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 40 |
1 files changed, 27 insertions, 13 deletions
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) |