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

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