acme/testing/errors/Makefile
marcobaye 158379ce9a "symbol twice" error now outputs location of previous definition,
just as "macro twice" does.


git-svn-id: https://svn.code.sf.net/p/acme-crossass/code-0/trunk@406 4df02467-bbd4-4a76-a152-e7ce94205b78
2024-08-29 18:27:50 +00:00

16 lines
238 B
Makefile

ACMEFLAGS = -v0 --color
FILES := $(wildcard *.a)
TESTS = $(subst .a,.test,$(FILES))
.SILENT:
%.test: %.a
echo "Testing error generation:" $<
! acme $(ACMEFLAGS) $<
echo "Ok."
all: $(TESTS)
echo
echo "Testing errors: PASSED"
echo