diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2020-04-26 21:29:52 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2020-04-26 21:50:14 +0200 |
commit | 2cad525e2babac75395caf367449d9e9b31fcd42 (patch) | |
tree | 653e5d03f43414e3347be176f816d4f5a9015c5d /test/Makefile.am | |
parent | 20c5726e9442ebaf3711043cc0f317a600fb9c75 (diff) |
Fix out-of-tree building.
Diffstat (limited to 'test/Makefile.am')
-rw-r--r-- | test/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index 8332cbe..001d13d 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -98,7 +98,7 @@ enginetest_CXXFLAGS = -DOUTPUT=\"enginetest\" \ -I$(top_srcdir)/src \ -I$(top_srcdir)/hugin $(PTHREAD_CFLAGS) $(SNDFILE_CFLAGS) enginetest_LDFLAGS = $(PTHREAD_LIBS) $(SNDFILE_LIBS) \ - $(top_srcdir)/src/libdg.la + $(top_builddir)/src/libdg.la enginetest_SOURCES = \ $(top_srcdir)/hugin/hugin.c \ dgtest.cc \ @@ -229,7 +229,7 @@ domloadertest_CXXFLAGS = -DOUTPUT=\"domloadertest\" \ $(DEBUG_FLAGS) \ -I$(top_srcdir)/src domloadertest_LDFLAGS = \ - $(top_srcdir)/src/libdg.la + $(top_builddir)/src/libdg.la domloadertest_SOURCES = \ $(top_srcdir)/hugin/hugin.c \ domloadertest.cc \ |