mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 02:47:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
24
build/pymake/tests/submake.makefile2
Normal file
24
build/pymake/tests/submake.makefile2
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# -*- Mode: Makefile -*-
|
||||
|
||||
$(info MAKEFLAGS = '$(MAKEFLAGS)')
|
||||
$(info MAKE = '$(MAKE)')
|
||||
$(info value MAKE = "$(value MAKE)")
|
||||
|
||||
shellresult := $(shell echo -n $$EVAR)
|
||||
ifneq ($(shellresult),eval)
|
||||
$(error EVAR should be eval, is instead $(shellresult))
|
||||
endif
|
||||
|
||||
all:
|
||||
env
|
||||
test "$(MAKELEVEL)" = "1"
|
||||
echo "value(MAKE)" '$(value MAKE)'
|
||||
echo "value(MAKE_COMMAND)" = '$(value MAKE_COMMAND)'
|
||||
test "$(origin CVAR)" = "command line"
|
||||
test "$(CVAR)" = "c val=spac\ed"
|
||||
test "$(origin EVAR)" = "environment"
|
||||
test "$(EVAR)" = "eval"
|
||||
test "$(OVAL)" = "cline"
|
||||
test "$(OVAL2)" = "cline2"
|
||||
test "$(ALLVAR)" = "allspecific"
|
||||
@echo TEST-PASS
|
||||
Loading…
Add table
Add a link
Reference in a new issue