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