Mypal/build/pymake/tests/tab-intro.mk
2019-03-11 13:26:37 +03:00

17 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