mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
252 B
Makefile
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
|