Subversion Repositories tendra.SVN

Rev

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_)