mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-20 11:23: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
|