summaryrefslogtreecommitdiff
path: root/unit-tests/directive-export-literal.mk
blob: 817c836fd6c4bc6a749d7a1a1d89832aa59cdab3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# $NetBSD: directive-export-literal.mk,v 1.5 2020/10/05 19:27:48 rillig Exp $
#
# Tests for the .export-literal directive, which exports a variable value
# without expanding it.

UT_VAR=		value with ${UNEXPANDED} expression

.export-literal UT_VAR

all:
	@echo "$$UT_VAR"