home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / prog_pm / chap15 / typeclip < prev   
Encoding:
Text File  |  1989-01-09  |  373 b   |  17 lines

  1. #--------------------
  2. # TYPECLIP make file
  3. #--------------------
  4.  
  5. typeclip.obj : typeclip.c typeclip.h
  6.      cl -c -G2sw -W3 typeclip.c
  7.  
  8. typeclip.res : typeclip.rc typeclip.h
  9.      rc -r typeclip
  10.  
  11. typeclip.exe : typeclip.obj typeclip.def
  12.      link typeclip, /align:16, NUL, os2, typeclip
  13.      rc typeclip.res
  14.  
  15. typeclip.exe : typeclip.res
  16.      rc typeclip.res
  17.