diff options
author | Ross Burton <ross@burtonini.com> | 2007-03-04 14:03:27 +0000 |
---|---|---|
committer | Ross Burton <rburton@src.gnome.org> | 2007-03-04 14:03:27 +0000 |
commit | f6da7f5c5112cff359a3116fe08df68bc9f0f047 (patch) | |
tree | 0e39d07bf0b0bec0d36b5a56fcca777dd21c0fce /tests | |
parent | 8314bed7db357ffe0e6fa8267f883554148590f5 (diff) |
Link to libjuicer.la instead of the sources directly. This fixes
2007-03-04 Ross Burton <ross@burtonini.com>
* tests/Makefile.am:
Link to libjuicer.la instead of the sources directly. This fixes
srcdir!=builddir builds, thanks Loic Minier. (#414159).
* libjuicer/Makefile.am:
marshal.c depends on marshal.h, and whitespace cleanup (Loic).
svn path=/trunk/; revision=1713
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 2220866..67993b7 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,11 +1,7 @@ noinst_PROGRAMS = mb-test mb_test_SOURCES = \ - mb-test.c \ - $(top_srcdir)/libjuicer/sj-metadata.c \ - $(top_srcdir)/libjuicer/sj-metadata-musicbrainz.c \ - $(top_srcdir)/libjuicer/sj-metadata-marshal.c \ - $(top_srcdir)/libjuicer/sj-error.c + mb-test.c mb_test_CPPFLAGS = \ -I$(top_srcdir)/libjuicer \ @@ -23,9 +19,10 @@ mb_test_CFLAGS = \ $(AM_CPPFLAGS) mb_test_LDADD = \ - $(BURN_LIBS) \ + $(BURN_LIBS) \ $(UI_LIBS) \ - $(MUSICBRAINZ_LIBS) + $(MUSICBRAINZ_LIBS) \ + $(top_builddir)/libjuicer/libjuicer.la mb_test_LDFLAGS = \ -export-dynamic \ |