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

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