summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRoss Burton <ross@burtonini.com>2006-10-17 21:16:33 +0000
committerRoss Burton <rburton@src.gnome.org>2006-10-17 21:16:33 +0000
commit19b8e723008c9b3d6af3d4a3b1fa69e0c9e2951b (patch)
tree728521158377ccfce32c769ab93677528b742e7d /tests
parent87e4b4ec9d3157cde1e23768eaacedb6ca371f4f (diff)
Rename and add version field for bug-buddy.
2006-10-17 Ross Burton <ross@burtonini.com> * data/sound-juicer.desktop.in: * data/sound-juicer.desktop.in.in: * po/POTFILES.in: Rename and add version field for bug-buddy. * autogen.sh: * configure.in: * Makefile.am: * data/Makefile.am: * libjuicer/Makefile.am: * src/Makefile.am: * tests/Makefile.am: Port to automake 1.9. * .cvsignore: * help/sound-juicer/*/.cvsignore: * po/.cvsignore: Update. Thanks to Christian Persch (#357682).
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.am31
1 files changed, 19 insertions, 12 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index f69bdc5..4e83ff3 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -1,15 +1,3 @@
-AM_CPPFLAGS = \
- -I$(top_srcdir)/libjuicer \
- -I$(top_srcdir)/src \
- -DGNOME_DISABLE_DEPRECATED=1 \
- -DGTK_DISABLE_DEPRECATED=1 \
- -DGDK_DISABLE_DEPRECATED=1 \
- -DG_DISABLE_DEPRECATED=1 \
- @MUSICBRAINZ_CFLAGS@ @GSTREAMER_CFLAGS@ \
- @MEDIA_PROFILES_CFLAGS@ @BURN_CFLAGS@ @UI_CFLAGS@
-
-AM_CFLAGS = -export-dynamic @WARN_CFLAGS@
-
noinst_PROGRAMS = mb-test
mb_test_SOURCES = \
@@ -19,4 +7,23 @@ mb_test_SOURCES = \
$(top_srcdir)/libjuicer/sj-metadata-marshal.c \
$(top_srcdir)/libjuicer/sj-error.c
+mb_test_CPPFLAGS = \
+ -I$(top_srcdir)/libjuicer \
+ -I$(top_srcdir)/src \
+ $(DISABLE_DEPRECATED) \
+ $(AM_CPPFLAGS)
+
+mb_test_CFLAGS = \
+ $(WARN_CFLAGS) \
+ $(MUSICBRAINZ_CFLAGS) \
+ $(GSTREAMER_CFLAGS) \
+ $(MEDIA_PROFILES_CFLAGS) \
+ $(BURN_CFLAGS) \
+ $(UI_CFLAGS) \
+ $(AM_CPPFLAGS)
+
mb_test_LDADD = @BURN_LIBS@ @UI_LIBS@ @MUSICBRAINZ_LIBS@
+
+mb_test_LDFLAGS = \
+ -export-dynamic \
+ $(AM_LDFLAGS)