home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / S12546.ZIP / CLIENT next >
Text File  |  1990-03-19  |  829b  |  37 lines

  1. #===================================================================
  2. #
  3. #  Standard command line definitions
  4. #
  5. #===================================================================
  6.  
  7. cp=cl -c -W3 -Alfw -G2sw -Os -Zpei
  8.  
  9. #===================================================================
  10. #
  11. #  Default inference rules
  12. #
  13. #===================================================================
  14.  
  15. .c.obj:
  16.     $(cp) $*.c
  17.  
  18. .asm.obj:
  19.     masm $*.asm;
  20.  
  21. .rc.res:
  22.     rc -r $*.rc
  23.  
  24. #===================================================================
  25. #
  26. #  Dependencies
  27. #
  28. #===================================================================
  29.  
  30. client.obj: client.c client.h
  31.  
  32. client.res: client.rc client.ico client.h
  33.  
  34. client.exe: client.obj client.res client.lnk client.def
  35.     link @client.lnk
  36.     rc client.res
  37.