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

  1. #-----------------------------------------------------------------------
  2. #
  3. #  Copyright (1995) Bentley Systems, Inc., All rights reserved.
  4. #
  5. #  Application Make File
  6. #
  7. #    $Logfile:   J:/mdl/examples/cellpick/cellpick.mkv  $
  8. #   $Workfile:   cellpick.mke  $
  9. #   $Revision:   1.8  $
  10. #       $Date:   16 Jun 1995 13:57:56  $
  11. #
  12. #  "MicroStation" is a registered trademark and "MDL" and "MicroCSL"
  13. #  are trademarks of Bentley Systems, Inc.
  14. #
  15. #  Limited permission is hereby granted to reproduce and modify this
  16. #  copyrighted material provided that the resulting code is used only
  17. #  in conjunction with Bentley Systems products under the terms of the
  18. #  license agreement provided therein, and that this notice is retained
  19. #  in its entirety in any such reproduction or modification.
  20. #
  21. #-----------------------------------------------------------------------
  22. %if defined (_MakeFilePath)
  23. BaseDir     = $(_MakeFilePath)
  24. %else
  25. BaseDir     = $(MS)/mdl/examples/cellpick/
  26. %endif
  27. PrivateInc    = $(BaseDir)
  28.  
  29. %include mdl.mki
  30. %include mdlexmpl.mki
  31.  
  32. #----------------------------------------------------------------------
  33. #   Define symbol for files included in our link and resource merge
  34. #----------------------------------------------------------------------
  35. cellPickObjs =   $(o)cellpick.mo
  36.  
  37. cellPickRscs = $(o)cellpick.mp
  38.  
  39. #---------------------------------------------
  40. #    Compile and link MDL Application
  41. #---------------------------------------------
  42. $(o)cellpick.mo        : $(BaseDir)cellpick.mc 
  43.  
  44. $(o)cellpick.mp    : $(o)cellpick.mo
  45.     $(msg)
  46.     >$(o)make.opt
  47.     -a$@
  48.     $(linkOpts) 
  49.     $(cellPickObjs)
  50.     $(mdlLibs)ditemlib.ml
  51.     <
  52.     $(linkCmd) @$(o)make.opt
  53.     ~time
  54.  
  55. #---------------------------------------------
  56. #    Merge Objects into one file
  57. #---------------------------------------------
  58. $(reqdObjs)cellpick.mi    : $(cellPickRscs)
  59.     $(msg)    
  60.     >$(o)make.opt
  61.     -o$@
  62.     $(cellPickRscs)
  63.     <
  64.     $(rscLibCmd) @$(o)make.opt
  65.     ~time
  66.  
  67. %include $(baseDir)cellprsc.mki
  68.