diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-12-09 07:51:43 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-12-09 07:51:43 -0800 |
commit | eda6efa892a9a45c3983ed9d6eae83cc72a52705 (patch) | |
tree | e1a12f7cc11b73156a4cd234e7ddcb2845add72f | |
parent | 4a0c38359c0320d66ec6b1f04244b5ed4ba39a27 (diff) | |
download | txr-eda6efa892a9a45c3983ed9d6eae83cc72a52705.tar.gz txr-eda6efa892a9a45c3983ed9d6eae83cc72a52705.tar.bz2 txr-eda6efa892a9a45c3983ed9d6eae83cc72a52705.zip |
* Makefile (($TESTS_OUT)): Do not depend on $(PROG).
This adds superfluous commands to run.sh under make install-tests,
and is also inappropriate if a different txr binary is being tested.
(install-tests): Do not override top_srcdir in the recursive make
call; instead use -C to change to $(top_srcdir).
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | Makefile | 4 |
2 files changed, 9 insertions, 3 deletions
@@ -1,5 +1,13 @@ 2014-12-09 Kaz Kylheku <kaz@kylheku.com> + * Makefile (($TESTS_OUT)): Do not depend on $(PROG). + This adds superfluous commands to run.sh under make install-tests, + and is also inappropriate if a different txr binary is being tested. + (install-tests): Do not override top_srcdir in the recursive make + call; instead use -C to change to $(top_srcdir). + +2014-12-09 Kaz Kylheku <kaz@kylheku.com> + * Makefile (all): Mark as phony target. 2014-12-09 Kaz Kylheku <kaz@kylheku.com> @@ -156,8 +156,6 @@ TESTS_OUT := $(patsubst $(top_srcdir)/%.txr,./%.out,\ $(shell find $(top_srcdir)/tests -name '*.txr' | sort)) TESTS_OK := $(TESTS_OUT:.out=.ok) -$(TESTS_OUT): $(PROG) - .PHONY: tests tests: $(TESTS_OK) $(V)echo "** tests passed!" @@ -279,7 +277,7 @@ install-tests: $(V)(echo "#!/bin/sh" ; \ echo "set -ex" ; \ echo "cd $(datadir)" ; \ - make -s -n tests VERBOSE=y top_srcdir=. TXR=$(bindir)/txr) \ + make -C $(top_srcdir) -s -n tests VERBOSE=y TXR=$(bindir)/txr) \ > run.sh $(call INSTALL,0755,run.sh,$(DESTDIR)$(datadir)/tests) |