
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
24 lines
431 B
Makefile
24 lines
431 B
Makefile
# $Id: export-all.mk,v 1.2 2015/04/10 20:41:59 sjg Exp $
|
|
|
|
UT_OK=good
|
|
UT_F=fine
|
|
|
|
# the old way to do :tA
|
|
M_tAbad = C,.*,cd & \&\& 'pwd',:sh
|
|
# the new
|
|
M_tA = tA
|
|
|
|
here := ${.PARSEDIR}
|
|
|
|
# this will cause trouble (recursing if we let it)
|
|
UT_BADDIR = ${${here}/../${here:T}:L:${M_tAbad}:T}
|
|
# this will be ok
|
|
UT_OKDIR = ${${here}/../${here:T}:L:${M_tA}:T}
|
|
|
|
.export
|
|
|
|
.include "export.mk"
|
|
|
|
UT_TEST=export-all
|
|
UT_ALL=even this gets exported
|