mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-29 18:58:40 +09:00
16 lines
252 B
Makefile
16 lines
252 B
Makefile
# Initial tab characters should be treated well.
|
|
|
|
THIS = a value
|
|
|
|
ifdef THIS
|
|
VAR = conditional value
|
|
endif
|
|
|
|
all:
|
|
test "$(THIS)" = "another value"
|
|
test "$(VAR)" = "conditional value"
|
|
@echo TEST-PASS
|
|
|
|
THAT = makefile syntax
|
|
|
|
THIS = another value
|