ref: 1c5aa84742e3804a13a2d8fb990d82a6e493bf5a
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: