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

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