]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/bmake/unit-tests/directive-export-literal.mk
Update to bmake-20201101
[FreeBSD/FreeBSD.git] / contrib / bmake / unit-tests / directive-export-literal.mk
1 # $NetBSD: directive-export-literal.mk,v 1.5 2020/10/05 19:27:48 rillig Exp $
2 #
3 # Tests for the .export-literal directive, which exports a variable value
4 # without expanding it.
5
6 UT_VAR=         value with ${UNEXPANDED} expression
7
8 .export-literal UT_VAR
9
10 all:
11         @echo "$$UT_VAR"