home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1997 January
/
Chip_1997-01_cd.bin
/
ms95
/
disk23
/
dir02
/
f011690.re_
/
f011690.re
Wrap
Text File
|
1996-04-02
|
1KB
|
41 lines
#----------------------------------------------------------------------
#
# Current Revision:
# $Workfile: makedir.mki $
# $Revision: 6.0 $ $Date: Thu Oct 21 10:34:22 1993 $
#
# Copyright 1993, Bentley Systems, Inc.
#
# Limited permission is hereby granted to reproduce and modify this
# copyrighted material provided that the resulting code is used only in
# conjunction with Bentley Systems products under the terms of the
# license agreement provided therein, and that this notice is retained
# in its entirety in any such reproduction or modification.
#
#----------------------------------------------------------------------
%if UNIX || MSDOS || winNT
MkdirCmd = mkdir
%elif VAX
MkdirCmd = create/dir
%elif MACINTOSH
MkdirCmd = newfolder
%endif
#----------------------------------------------------------------------
# Directory creation rule.
#
# If directory/exists.ext doesn't exist, create the directory and
# create the file within the directory.
#----------------------------------------------------------------------
tstdir = direxist.ext
.ext.ext:
| creating dir ${$%}
-$(Mkdircmd) ${$%}
>$@
directory created
<