summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorAlex Xu (Hello71) <alex_y_xu@yahoo.ca>2018-08-10 09:42:35 -0400
committerAlex Xu (Hello71) <alex_y_xu@yahoo.ca>2018-08-10 09:42:35 -0400
commit59cfb5a84fd94fe72c4a19531bf014564a8b31f2 (patch)
tree9dfb7ee7a30919185e73841a1c31dd64072c3cee /Makefile.in
parent07919e2ba58c8ad92207526299339d113855963e (diff)
downloadrandom-seed-59cfb5a84fd94fe72c4a19531bf014564a8b31f2.tar.xz
random-seed-59cfb5a84fd94fe72c4a19531bf014564a8b31f2.zip
Cleanup code, add TEST_WRAPPER support.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index d3e3430..f52121e 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -49,8 +49,8 @@ endif
test: $(TEST_FILE)
$(TEST_FILE): random-seed
- ./random-seed save $(TEST_FILE)
- ./random-seed load $(TEST_FILE) || [ $$? = 15 ]
+ $(TEST_WRAPPER) ./random-seed save $(TEST_FILE)
+ $(TEST_WRAPPER) ./random-seed load $(TEST_FILE) || [ $$? = 15 ]
clean:
$(RM) random-seed $(OBJ) $(DEP) $(TEST_FILE)
@@ -58,5 +58,5 @@ clean:
distclean: clean
$(RM) -r aclocal.m4 autom4te.cache config.h config.h.in 'config.h.in~' config.log config.status configure Makefile
-.PHONY: all install test clean
+.PHONY: all install test clean random-seed.test
.INTERMEDIATE: $(TEST_FILE)