mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-08 01:31:00 +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"
|