home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / CLIP.ZIP / CLIP < prev    next >
Text File  |  1989-10-17  |  364b  |  37 lines

  1. #
  2. # PM Gif
  3. # Created by t-jaym
  4. #
  5.  
  6.  
  7. #
  8. # Standard Command Line Definitions
  9. #
  10.  
  11. cp=cl -c -W3 -AS -G2sw -Ox -Zpe
  12.  
  13. #
  14. # Default Inference Rules
  15. #
  16.  
  17. .c.obj:
  18.   $(cp) $*.c
  19.  
  20. .asm.obj:
  21.   masm $*.asm;
  22.  
  23. .rc.res:
  24.   rc -r $*.rc
  25.  
  26. #
  27. # Dependencies
  28. #
  29.  
  30. clip.obj: clip.c
  31.  
  32. clip.res: clip.rc clip.ico
  33.  
  34. clip.exe: clip.obj
  35.   link @clip.lnk
  36.   rc clip.res
  37.