Files
acme/testing/bugfixes/Makefile
marcobaye 5e365a8723 fixed a bug and added test files
git-svn-id: https://svn.code.sf.net/p/acme-crossass/code-0/trunk@337 4df02467-bbd4-4a76-a152-e7ce94205b78
2024-02-16 01:06:48 +00:00

16 lines
222 B
Makefile

ACMEFLAGS = -v0
FILES := $(wildcard *.a)
TESTS = $(subst .a,.test,$(FILES))
.SILENT:
%.test: %.a
echo "Testing bugfix:" $<
acme $(ACMEFLAGS) $<
echo "Ok."
all: $(TESTS)
echo
echo "Testing bugfixes: PASSED"
echo