head	1.1;
access;
symbols
	RELENG_9:1.1.0.2;
locks; strict;
comment	@# @;


1.1
date	2012.10.03.00.41.46;	author marcel;	state Exp;
branches
	1.1.2.1;
next	;

1.1.2.1
date	2012.10.03.00.41.46;	author svnexp;	state dead;
branches;
next	1.1.2.2;

1.1.2.2
date	2014.03.16.00.01.46;	author svnexp;	state Exp;
branches;
next	;


desc
@@


1.1
log
@SVN rev 241146 on 2012-10-03 00:41:46Z by marcel

Merge bmake-20120831 from vendor/NetBSD/bmake/dist.

Provenance: ftp://ftp.netbsd.org/pub/NetBSD/misc/sjg
@
text
@# $Id: modmisc,v 1.1.1.5 2011/04/11 15:10:32 sjg Exp $
#
# miscellaneous modifier tests

# do not put any dirs in this list which exist on some
# but not all target systems - an exists() check is below.
path=:/bin:/tmp::/:.:/no/such/dir:.
# strip cwd from path.
MOD_NODOT=S/:/ /g:N.:ts:
# and decorate, note that $'s need to be doubled. Also note that 
# the modifier_variable can be used with other modifiers.
MOD_NODOTX=S/:/ /g:N.:@@d@@'$$d'@@
# another mod - pretend it is more interesting
MOD_HOMES=S,/home/,/homes/,
MOD_OPT=@@d@@$${exists($$d):?$$d:$${d:S,/usr,/opt,}}@@
MOD_SEP=S,:, ,g

all:	modvar modvarloop modsysv

modsysv:
	@@echo "The answer is ${libfoo.a:L:libfoo.a=42}"

modvar:
	@@echo "path='${path}'"
	@@echo "path='${path:${MOD_NODOT}}'"
	@@echo "path='${path:S,home,homes,:${MOD_NODOT}}'"
	@@echo "path=${path:${MOD_NODOTX}:ts:}"
	@@echo "path=${path:${MOD_HOMES}:${MOD_NODOTX}:ts:}"

.for d in ${path:${MOD_SEP}:N.} /usr/xbin
path_$d?= ${d:${MOD_OPT}:${MOD_HOMES}}/
paths+= ${d:${MOD_OPT}:${MOD_HOMES}}
.endfor

modvarloop:
	@@echo "path_/usr/xbin=${path_/usr/xbin}"
	@@echo "paths=${paths}"
	@@echo "PATHS=${paths:tu}"
@


1.1.2.1
log
@file modmisc was added on branch RELENG_9 on 2014-03-16 00:01:46 +0000
@
text
@d1 38
@


1.1.2.2
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/263212
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@a0 38
# $Id: modmisc,v 1.1.1.5 2011/04/11 15:10:32 sjg Exp $
#
# miscellaneous modifier tests

# do not put any dirs in this list which exist on some
# but not all target systems - an exists() check is below.
path=:/bin:/tmp::/:.:/no/such/dir:.
# strip cwd from path.
MOD_NODOT=S/:/ /g:N.:ts:
# and decorate, note that $'s need to be doubled. Also note that 
# the modifier_variable can be used with other modifiers.
MOD_NODOTX=S/:/ /g:N.:@@d@@'$$d'@@
# another mod - pretend it is more interesting
MOD_HOMES=S,/home/,/homes/,
MOD_OPT=@@d@@$${exists($$d):?$$d:$${d:S,/usr,/opt,}}@@
MOD_SEP=S,:, ,g

all:	modvar modvarloop modsysv

modsysv:
	@@echo "The answer is ${libfoo.a:L:libfoo.a=42}"

modvar:
	@@echo "path='${path}'"
	@@echo "path='${path:${MOD_NODOT}}'"
	@@echo "path='${path:S,home,homes,:${MOD_NODOT}}'"
	@@echo "path=${path:${MOD_NODOTX}:ts:}"
	@@echo "path=${path:${MOD_HOMES}:${MOD_NODOTX}:ts:}"

.for d in ${path:${MOD_SEP}:N.} /usr/xbin
path_$d?= ${d:${MOD_OPT}:${MOD_HOMES}}/
paths+= ${d:${MOD_OPT}:${MOD_HOMES}}
.endfor

modvarloop:
	@@echo "path_/usr/xbin=${path_/usr/xbin}"
	@@echo "paths=${paths}"
	@@echo "PATHS=${paths:tu}"
@


