home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv8.zip / VACPP / IBMCPP / samples / TOOLKIT / CREXX / REXXCALC / REXXCAL2.MAK < prev    next >
Text File  |  1995-03-21  |  402b  |  15 lines

  1. # NMAKE-compatible MAKE file for the REXX sample program REXXCAL2.EXE.
  2.  
  3. all: rexxcal2.exe rexxcal2.res
  4.  
  5. rexxcal2.obj: rexxcal2.h rexxcal2.c
  6.         icc /c /o rexxcal2.c
  7.  
  8. rexxcal2.res: rexxcal2.h rexxcal2.rc
  9.         rc -r rexxcal2.rc
  10.  
  11. rexxcal2.exe: rexxcal2.obj rexxcal2.res rexxcal2.def
  12.         ilink /nofree rexxcal2,rexxcal2,nul,rexx,rexxcal2.def
  13.         rc rexxcal2.res rexxcal2.exe
  14.  
  15.