Compile unit tests only on demand unless using --enable-debug.

This commit is contained in:
Romain Tartiere 2011-05-11 17:38:11 +00:00
parent ca3c5007f6
commit 520e64c095
2 changed files with 11 additions and 4 deletions

View file

@ -7,10 +7,16 @@ if WITH_CUTTER
TESTS = run-test.sh
TESTS_ENVIRONMENT = NO_MAKE=yes CUTTER="$(CUTTER)"
noinst_LTLIBRARIES = \
test_access_storm.la \
test_register_access.la \
test_register_endianness.la
cutter_unit_test_libs = \
test_access_storm.la \
test_register_access.la \
test_register_endianness.la
if WITH_DEBUG
noinst_LTLIBRARIES = $(cutter_unit_test_libs)
else
check_LTLIBRARIES = $(cutter_unit_test_libs)
endif
AM_LDFLAGS = -module -rpath $(libdir) -avoid-version -no-undefined