mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
14 lines
217 B
Makefile
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 $@
|