mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-30 18:32:19 +00:00
8 lines
164 B
Makefile
8 lines
164 B
Makefile
#T commandline: ['TESTVAR=$(MAKEVAL)', 'TESTVAR2:=$(MAKEVAL)']
|
|
|
|
MAKEVAL=testvalue
|
|
|
|
all:
|
|
test "$(TESTVAR)" = "testvalue"
|
|
test "$(TESTVAR2)" = ""
|
|
@echo "TEST-PASS"
|