mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 02:47:31 +09:00
12 lines
203 B
Makefile
12 lines
203 B
Makefile
VAR = value1
|
|
VAR := value2
|
|
|
|
VAR2 := val1
|
|
VAR2 = val2
|
|
|
|
default:
|
|
test "$(flavor VAR)" = "simple"
|
|
test "$(VAR)" = "value2"
|
|
test "$(flavor VAR2)" = "recursive"
|
|
test "$(VAR2)" = "val2"
|
|
@echo "TEST-PASS"
|