home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 January / Chip_1997-01_cd.bin / ms95 / disk23 / dir02 / f011690.re_ / f011690.re
Text File  |  1996-04-02  |  1KB  |  41 lines

  1. #----------------------------------------------------------------------
  2. #
  3. #   Current Revision:
  4. #   $Workfile:   makedir.mki  $
  5. #   $Revision:   6.0  $  $Date:   Thu Oct 21 10:34:22 1993  $
  6. #
  7. #   Copyright 1993, Bentley Systems, Inc.
  8. #
  9. #   Limited permission is hereby granted to reproduce and modify this
  10. #   copyrighted material provided that the resulting code is used only in
  11. #   conjunction with Bentley Systems products under the terms of the
  12. #   license agreement provided therein, and that this notice is retained
  13. #   in its entirety in any such reproduction or modification.
  14. #
  15. #----------------------------------------------------------------------
  16.  
  17. %if    UNIX || MSDOS || winNT
  18.     MkdirCmd    =    mkdir
  19. %elif    VAX
  20.         MkdirCmd    =    create/dir
  21. %elif    MACINTOSH
  22.         MkdirCmd       =    newfolder
  23. %endif
  24.  
  25.  
  26. #----------------------------------------------------------------------
  27. #    Directory creation rule.
  28. #
  29. #   If directory/exists.ext doesn't exist, create the directory and
  30. #   create the file within the directory.
  31. #----------------------------------------------------------------------
  32. tstdir = direxist.ext
  33.  
  34. .ext.ext:
  35.     | creating dir ${$%}
  36.     -$(Mkdircmd) ${$%}
  37.     >$@
  38.     directory created
  39.     <
  40.  
  41.