tenfourfox/build/pymake/tests/matchany2.mk
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

14 lines
217 B
Makefile

# 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 $@