mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-29 10:48:39 +09:00
14 lines
209 B
Makefile
14 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 $@
|