blob: e559327ab1f9bcaccc205a70b2a2a2573467ee1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# don't build anything for 'all'
all:
$(MAKE) -C ..
check:
./runtest.sh
.PHONY: %
%:
./runtest.sh $@
.PHONY: clean
clean:
rm -f testmatch.use testmatch.o
@for i in `awk '/^[A-Z]/{print $$2}' tests`; do \
echo rm -f $$i; \
rm -f $$i; \
done
install:
|