freebsd-src/unit-tests/export-env.mk

28 lines
598 B
Makefile
Raw Normal View History

# $NetBSD: export-env.mk,v 1.4 2020/10/24 08:50:17 rillig Exp $
2013-04-01 21:12:55 +00:00
# our normal .export, subsequent changes affect the environment
UT_TEST= this
2013-04-01 21:12:55 +00:00
.export UT_TEST
UT_TEST:= ${.PARSEFILE}
2013-04-01 21:12:55 +00:00
# not so with .export-env
UT_ENV= exported
2013-04-01 21:12:55 +00:00
.export-env UT_ENV
UT_ENV= not-exported
2013-04-01 21:12:55 +00:00
# gmake style export goes further; affects nothing but the environment
UT_EXP=before-export
export UT_EXP=exported
UT_EXP=not-exported
2016-03-11 00:37:02 +00:00
UT_LIT= literal ${UT_TEST}
.export-literal UT_LIT
2013-04-01 21:12:55 +00:00
all:
2016-03-11 00:37:02 +00:00
@echo make:; ${UT_TEST UT_ENV UT_EXP UT_LIT:L:@v@echo $v=${$v};@}
@echo env:; ${UT_TEST UT_ENV UT_EXP UT_LIT:L:@v@echo $v=$${$v};@}
2013-04-01 21:12:55 +00:00