Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – tendra.SVN – Blame – /branches/tendra5-amd64/mk/tendra.functions.mk – Rev 6

Subversion Repositories tendra.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 7u83 1
# TenDRA make functions
2
#
3
# $Id$
4
 
5
.if !defined(_TENDRA_FUNCTIONS_MK_)
6
_TENDRA_FUNCTIONS_MK_=1
7
 
8
# This shell function is inlined in rules below. Careful about quoting.
9
CONDCREATE=     @Condcreate() {                                      \
10
                        for dir in $${*}; do                         \
11
                                if ${TEST} ! -e $${dir}; then        \
12
                                        ${ECHO} "\# Creating $${dir}/"; \
13
                                        ${MKDIR} -p $${dir};         \
14
                                fi;                                  \
15
                        done;                                        \
16
                }; Condcreate
17
 
18
.endif	# !defined(_TENDRA_FUNCTIONS_MK_)