home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / warptlk3.zip / TOOLKIT / SAMPLES / REXX / API / REXXCALC / REXXCALC.MAK < prev    next >
Makefile  |  1995-08-24  |  446b  |  16 lines

  1. # NMAKE-compatible MAKE file for the REXX sample program REXXCALC.EXE.
  2. # This uses the IBM C Set/2 compiler and LINK386
  3.  
  4. all: rexxcalc.exe rexxcalc.res 
  5.  
  6. rexxcalc.obj: rexxcalc.h rexxcalc.c
  7.         icc /c /o rexxcalc.c
  8.  
  9. rexxcalc.res: rexxcalc.h rexxcalc.rc
  10.         rc -r rexxcalc.rc
  11.  
  12. rexxcalc.exe: rexxcalc.obj rexxcalc.res rexxcalc.def
  13.         link386 rexxcalc,rexxcalc,nul,rexx,rexxcalc.def
  14.         rc rexxcalc.res rexxcalc.exe
  15.  
  16.