summaryrefslogtreecommitdiffstats
path: root/build/pymake/tests/tab-intro.mk
blob: 1c25ce747849f12f42960f566ba52f3136ead92b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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