home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / os2sdk / os2sdk11 / petzold / chap14 / head < prev    next >
Encoding:
Text File  |  1989-02-20  |  388 b   |  20 lines

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