home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / devpl016.zip / MAKEFILE < prev    next >
Text File  |  1994-02-07  |  842b  |  35 lines

  1. # Makefile for DWP.EXE
  2. #
  3.  
  4. # Abbreviations
  5. #
  6. #CC    =    cl -c -Asnu -W3 -Gs -Gc
  7. LF    =    /align:16 /codeview /map /NOD
  8. RF    =    -cp 932,0x81,0x9f,0xe0,0xfc
  9.  
  10. # Inference Rules
  11. #
  12. .rc.res:
  13.     rc -r $(RF) $*.rc
  14.  
  15. # Dependencies
  16. #
  17. DWP.obj:    makefile DWP.c DWP.h
  18.     cl -c -AL -W3 -Gw -Gc -Zp -Zi -J -Od -nologo DWP.c
  19.  
  20. pipesav.obj:    makefile pipesav.c 
  21.     cl -c -AL -W3 -Gw -Gc -Zp -Zi -J -Od -nologo pipesav.c
  22.  
  23. session.obj:     makefile session.c
  24.     cl -c -AL -W3 -Gw -Gc -Zp -Zi -J -Od -nologo session.c
  25.  
  26. parmget.obj:    makefile parmget.c
  27.     cl -c -AL -W3 -Gw -Gc -Zp -Zi -J -Od -nologo parmget.c
  28.  
  29. DWP.res:    makefile DWP.h DWP.ico DWP.rc INPUTF.dlg 
  30.  
  31. DWP.exe:    makefile DWP.def DWP.obj pipesav.obj session.obj parmget.obj DWP.res 
  32.     link $(LF) DWP+pipesav+session+parmget,DWP.exe,DWP.map, os2 Llibce,DWP.def
  33.     rc DWP.res
  34.     mapsym DWP
  35.