mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-21 20:03:08 +09:00
14 lines
220 B
Makefile
14 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:
|