summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2014-02-18 23:30:28 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2014-02-18 23:30:28 +0100
commita20a91ad7c042c46e4a2adee6d03315f857f9985 (patch)
tree0205e6fffbead31ea5a1e1319ad840dec88eee24 /test
parent19f21a1d974d802f05c43e4cabd6ed6891a8ae50 (diff)
test: Fix math .c dependency
When explicitly running the compile target we were missing a dependency to generate the libm-test.c. Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/math/Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/math/Makefile.in b/test/math/Makefile.in
index beef6503d..0285b6606 100644
--- a/test/math/Makefile.in
+++ b/test/math/Makefile.in
@@ -25,7 +25,8 @@ EXTRA_LDFLAGS := -lm
PERL := /usr/bin/perl
-$(TESTS): libm-test.c
+MDEPS := $(wildcard test-*.c)
+$(MDEPS): libm-test.c
libm-test.c: libm-test-ulps-$(TARGET_ARCH) libm-test.inc gen-libm-test.pl
$(Q)$(PERL) ./gen-libm-test.pl -u libm-test-ulps-$(TARGET_ARCH) ./libm-test.inc -o "." 2>&1 > /dev/null