properly build unit tests so they are no longer installed

This commit is contained in:
Florian Stinglmayr 2018-02-22 14:01:23 +01:00
parent f2bb5b8ae6
commit b560eda3be

View File

@ -1,9 +1,9 @@
bin_PROGRAMS = test_dice_simple_roll \ check_PROGRAMS = test_dice_simple_roll \
test_dice_parse \ test_dice_parse \
test_dice_evaluate \ test_dice_evaluate \
test_expr_parse test_expr_parse
AM_CFLAGS = -I../lib ${CMOCKA_CFLAGS} AM_CFLAGS = -I../lib ${CMOCKA_CFLAGS}
AM_LDFLAGS = ${CMOCKA_LIBS} ../libdice.la AM_LDFLAGS = ${CMOCKA_LIBS} ../libdice.la
TESTS = $(bin_PROGRAMS) TESTS = $(check_PROGRAMS)