From b560eda3be1620b66dd8ae65bbde16c909413218 Mon Sep 17 00:00:00 2001 From: Florian Stinglmayr Date: Thu, 22 Feb 2018 14:01:23 +0100 Subject: [PATCH] properly build unit tests so they are no longer installed --- tests/Makefile.am | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index c1c08d3..4ae54df 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,9 +1,9 @@ -bin_PROGRAMS = test_dice_simple_roll \ - test_dice_parse \ - test_dice_evaluate \ - test_expr_parse +check_PROGRAMS = test_dice_simple_roll \ + test_dice_parse \ + test_dice_evaluate \ + test_expr_parse AM_CFLAGS = -I../lib ${CMOCKA_CFLAGS} AM_LDFLAGS = ${CMOCKA_LIBS} ../libdice.la -TESTS = $(bin_PROGRAMS) +TESTS = $(check_PROGRAMS)