home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / dokpr1.zip / posys / posys.mak < prev    next >
Text File  |  1995-11-09  |  951b  |  49 lines

  1. # Created by IBM WorkFrame/2 MakeMake at 17:28:11 on 07/27/95
  2. #
  3. # This makefile should be run in the following directory:
  4. #   d:\development\mdisamp
  5. #
  6. # The actions included in this makefile are:
  7. #   BIND::Resource Bind
  8. #   COMPILE::CLC C++
  9. #   COMPILE::Resource Compile
  10. #   LINK::CLC Link
  11.  
  12. .all: \
  13.   .\posys.exe \
  14.   posys.mak
  15.  
  16. .SUFFIXES:
  17.  
  18. .SUFFIXES: .cpp .rc
  19.  
  20. .rc.res:
  21.       @echo WF::COMPILE::Resource Compile
  22.       rc.exe -r %s %|fF.RES
  23.  
  24. .cpp.obj:
  25.       @echo WF::COMPILE::CLC C++
  26.       icc.exe /Ti /I..\ /DM2Z /Q /Fi /Si /Gm /G5 /C %s
  27.  
  28. .\posys.exe: \
  29.     .\porder.obj \
  30.     .\sampcont.obj \
  31.     .\posys.obj \
  32.     ..\mesacore.lib \
  33.     .\posys.res
  34.       @echo WF::LINK::CLC Link
  35.       icc.exe @<<
  36.  /B" /pmtype:pm /de"
  37.  /Feposys.exe
  38.  ..\mesa_dok.lib
  39.  .\porder.obj
  40.  .\sampcont.obj
  41.  .\posys.obj
  42.   posys.def
  43. <<
  44.       @echo WF::BIND::Resource Bind
  45.       rc.exe .\posys.res posys.exe
  46.  
  47.  
  48. !include posys.Dep
  49.