mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-21 11:53:07 +09:00
7 lines
90 B
Makefile
7 lines
90 B
Makefile
TESTVAR = val1
|
|
|
|
$(eval TESTVAR = val2)
|
|
|
|
all:
|
|
test "$(TESTVAR)" = "val2"
|
|
@echo TEST-PASS
|