ref: 60e882bf8cc56a93b0d98581dbc1cd0091ad7e9d
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: