mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
209 B
Makefile
15 lines
209 B
Makefile
|
#T returncode: 2
|
||
|
|
||
|
# we should fail to make foo.ooo from foo.ooo.test
|
||
|
all: foo.ooo
|
||
|
@echo TEST-FAIL
|
||
|
|
||
|
%.ooo:
|
||
|
|
||
|
# this match-anything pattern should not apply to %.ooo
|
||
|
%: %.test
|
||
|
cp $< $@
|
||
|
|
||
|
foo.ooo.test:
|
||
|
touch $@
|