diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Makefile | 3 |
2 files changed, 7 insertions, 0 deletions
@@ -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. @@ -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:" ; \ |