home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / prog_pm / chap17 / bigjob4 < prev    next >
Encoding:
Text File  |  1989-01-09  |  478 b   |  20 lines

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