blob: d21d9702cbe2eac96806af6ca8502d5fb2593dcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# we should succeed in making foo.ooo from foo.ooo.test
all: foo.ooo
@echo TEST-PASS
%.ooo: %.ccc
exit 1
# this match-anything rule is terminal, and therefore applies
%:: %.test
cp $< $@
foo.ooo.test:
touch $@
|