diff --git a/tests/Makefile b/tests/Makefile new file mode 100644 index 000000000..d26b65050 --- /dev/null +++ b/tests/Makefile @@ -0,0 +1,24 @@ +.NOTPARALLEL: + +TESTDIRS = string arith frames types imp array pic gs io template + +EXTRADIRS = gsl output + +test: $(TESTDIRS) + +all: $(TESTDIRS) $(EXTRADIRS) + +$(TESTDIRS):: + @echo + ../asy -dir ../base $@/*.asy + +$(EXTRADIRS):: + @echo + ../asy -dir ../base $@/*.asy + +clean: FORCE + rm -f *.eps + +distclean: FORCE clean + +FORCE: