home *** CD-ROM | disk | FTP | other *** search
/ Inside Multimedia 1995 July / IMM0795.ISO / share / os2 / pmfract / src / smplhelp < prev    next >
Text File  |  1994-01-24  |  806b  |  38 lines

  1. #-------------------
  2. # SMPLHELP make file
  3. #-------------------
  4.  
  5. # debug compile macro
  6. cd=cl -c -G2sw -W4 -Aflw -Zpei -Od
  7.  
  8. nd=/co
  9.  
  10. # final compile macro
  11. co=cl -c -G2sw -W4 -Aflw -Zpei -Oxaz -B2 C2L -B3 C3L
  12.  
  13. # default to debugging compile
  14. cl=$(cd)
  15.  
  16. #
  17. # main target
  18. ALL: smplhelp.dll smplhelp.lib
  19.  
  20. smplhint.obj : smplhint.asm
  21.      masm smplhint /mx;
  22.  
  23. smplhelp.obj : smplhelp.c smplhelp.hh
  24.      $(cl) smplhelp.c
  25.  
  26. smplhelp.res : smplhelp.rc smplhelp.ico smplhelp.hh smplhelp.hlp
  27.      rc -r smplhelp
  28.  
  29. smplhelp.dll : smplhelp.obj smplhint.obj smplhelp.def smplhelp.res
  30.      link smplhelp smplhint, /align:16, /li $(nd) /m, os2 llibcdll /nod , smplhelp
  31.      rc smplhelp.res smplhelp.dll
  32.      mapsym smplhelp
  33.  
  34. smplhelp.lib: smplhelp.def
  35.      implib smplhelp.lib smplhelp.def
  36.  
  37. 
  38.