mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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 $@
|