
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
23 lines
397 B
Makefile
23 lines
397 B
Makefile
# $Id: export.mk,v 1.1 2014/08/21 13:44:51 apb Exp $
|
|
|
|
UT_TEST=export
|
|
UT_FOO=foo${BAR}
|
|
UT_FU=fubar
|
|
UT_ZOO=hoopie
|
|
UT_NO=all
|
|
# belive it or not, we expect this one to come out with $UT_FU unexpanded.
|
|
UT_DOLLAR= This is $$UT_FU
|
|
|
|
.export UT_FU UT_FOO
|
|
.export UT_DOLLAR
|
|
# this one will be ignored
|
|
.export .MAKE.PID
|
|
|
|
BAR=bar is ${UT_FU}
|
|
|
|
.MAKE.EXPORTED+= UT_ZOO UT_TEST
|
|
|
|
all:
|
|
@env | grep '^UT_' | sort
|
|
|