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

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