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

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