summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--Makefile3
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4e01eb8b..2bdadd36 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2015-01-11 Kaz Kylheku <kaz@kylheku.com>
+ * Makefile (retest): New phony target for convenience.
+
+2015-01-11 Kaz Kylheku <kaz@kylheku.com>
+
* lib.c (make_like): Bugfix. (make-like nil "abc")
must return the empty string, not nil. Only
lists of non-characters fail to convert to a string.
diff --git a/Makefile b/Makefile
index 8decdd7e..8e1e2733 100644
--- a/Makefile
+++ b/Makefile
@@ -268,6 +268,9 @@ tst/%.out: %.txr
tests.clean:
rm -rf tst
+.PHONY: retest
+retest: tests.clean tests
+
define GREP_CHECK
$(V)if [ $$(grep -E $(1) $(SRCS) | wc -l) -ne $(3) ] ; then \
echo "New '$(2)' occurrences have been found:" ; \