mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
220 B
Makefile
15 lines
220 B
Makefile
test: VAR = value
|
|
|
|
%.do:
|
|
@echo TEST-FAIL: ran target "$@", should have run "all"
|
|
|
|
.PHONY: test
|
|
|
|
all:
|
|
@echo TEST-PASS: the default target is all
|
|
|
|
test:
|
|
@echo TEST-FAIL: ran target "$@", should have run "all"
|
|
|
|
test.do:
|