ref: e1bd55e7d0fd87b66041c1f90cc4cba370cb25ed
dir: /test/Makefile/
# don't build anything for 'all'
all:
$(MAKE) -C ..
check:
./runtest.sh
.PHONY: %
%:
./runtest.sh $@
.PHONY: clean install
clean:
@for i in `awk '/^[A-Z]/{print $$2}' tests`; do \
echo rm -f $$i; \
rm -f $$i; \
done
install: