freebsd-dev/contrib/bmake/unit-tests/opt-x-reduce-exported.mk
Simon J. Gerraty 954401e68e Update to bmake-20220724
Merge commit '308a28d6cd2e87028e535eabccb89a9dc2fd9515'
2022-07-26 09:09:32 -07:00

21 lines
583 B
Makefile

# $NetBSD: opt-x-reduce-exported.mk,v 1.3 2022/05/08 07:27:50 rillig Exp $
#
# Tests for the -X command line option, which prevents variables passed on the
# command line from being exported to the environment of child commands.
# The variable 'BEFORE' is exported, the variable 'AFTER' isn't.
.MAKEFLAGS: BEFORE=before -X AFTER=after
all: .PHONY ordinary submake
ordinary: .PHONY
@echo 'ordinary:'
@env | sort | grep -e '^BEFORE' -e '^AFTER'
submake: .PHONY
@echo 'submake:'
@${MAKE} -r -f ${MAKEFILE} show-env
show-env: .PHONY
@env | sort | grep -e '^BEFORE' -e '^AFTER'