diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2017-09-28 21:20:33 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2017-09-28 23:13:12 +0200 |
commit | b252ab668f705cf23694ca693f524e2292320a56 (patch) | |
tree | 26cbf624f2e6af7c4109c8cd2ce0b7d639676ab2 /src | |
parent | 280b72f15efb7269613ff2d9a86bb9585241ea92 (diff) |
build,tests: make sure tests are rebuilt if helper libs are updated
Diffstat (limited to 'src')
-rw-r--r-- | src/tests/Makefile.am | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/tests/Makefile.am b/src/tests/Makefile.am index c5bb61d8..ea69da2e 100644 --- a/src/tests/Makefile.am +++ b/src/tests/Makefile.am @@ -20,12 +20,15 @@ AM_CFLAGS = \ -DTESTUDEVRULESDIR=\"${top_srcdir}/src/\" \ $(NULL) -AM_LDFLAGS = \ - $(MM_LIBS) \ - $(CODE_COVERAGE_LDFLAGS) \ +LDADD = \ $(top_builddir)/src/libhelpers.la \ $(top_builddir)/src/libport.la \ $(top_builddir)/src/libkerneldevice.la \ + $(NULL) + +AM_LDFLAGS = \ + $(MM_LIBS) \ + $(CODE_COVERAGE_LDFLAGS) \ -lutil \ $(NULL) |