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

  1. #----------------------------------------------------------------------
  2. #
  3. #   MDL Example Applications Make Include File
  4. #
  5. #   $Workfile:   mdlexmpl.mki  $
  6. #   $Revision:   6.0  $
  7. #   $Date:   Thu Oct 21 10:42:34 1993  $
  8. #
  9. #   Copyright (1993) Bentley Systems, Inc., All rights reserved
  10. #
  11. #   Limited permission is hereby granted to reproduce and modify this
  12. #   copyrighted material provided that the resulting code is used only in
  13. #   conjunction with Bentley Systems products under the terms of the
  14. #   license agreement provided therein, and that this notice is retained
  15. #   in its entirety in any such reproduction or modification.
  16. #
  17. #----------------------------------------------------------------------
  18. msg    =    |[** MDL Examples: $@ <-- $= **]
  19.  
  20. %if !defined (MSO)
  21.     MSO        =    $(MS)
  22. %endif    #  !MSO
  23.  
  24. %if !defined (MSMDE)
  25.     MSMDE        =     $(MS)
  26. %endif
  27.  
  28. #----------------------------------------------------------
  29. #    Define directories
  30. #----------------------------------------------------------
  31. %if    !vax
  32.     src        = $(MSMDE)/mdl/examples/
  33.     mdlexample  = $(MSMDE)/mdl/examples/
  34.     examplesOut    = $(MSO)/mdlexmpl/
  35.  
  36.     o           = $(examplesOut)objects/
  37. %if !defined (BSI) || !defined (genSrc)
  38.     genSrc      = $(examplesOut)objects/
  39. %endif
  40.     rscObjects    = $(examplesOut)rscobj/
  41.     reqdObjs    = $(examplesOut)intermed/
  42.  
  43. %else    # VAX definitions
  44.     src        = MSMDE:[mdl.examples]
  45.     mdlexample     = MSMDE:[mdl.examples]
  46.     examplesOut    = MSO:[mdlexmpl]
  47.  
  48.     o        = MSO:[mdlexmpl.objects]
  49. %if !defined (BSI) || !defined (genSrc)
  50.     genSrc    = MSO:[mdlexmpl.objects]
  51. %endif
  52.     rscObjects    = MSO:[mdlexmpl.rscobj]
  53.     reqdObjs    = MSO:[mdlexmpl.intermed]
  54. %endif
  55.  
  56. #----------------------------------------------------------
  57. #    Create needed output directories if they dont exist
  58. #----------------------------------------------------------
  59. $(examplesOut)$(tstdir):    $(examplesOut)$(tstdir)
  60.  
  61. $(o)$(tstdir):            $(o)$(tstdir)
  62.  
  63. $(genSrc)$(tstdir):        $(genSrc)$(tstdir)
  64.  
  65. $(rscObjects)$(tstdir):        $(rscObjects)$(tstdir)
  66.  
  67. $(reqdObjs)$(tstdir):        $(reqdObjs)$(tstdir)
  68.