home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v5.zip / TOOLKT21 / REXX / SAMPLES / REXXUTIL / REXXUTIL.MAK < prev   
Text File  |  1993-03-12  |  304b  |  11 lines

  1. # NMAKE-compatible MAKE file for the REXX sample program REXXUTIL.DLL.
  2. # This uses the IBM C Set/2 compiler and LINK386.
  3.  
  4. rexxutil.dll:     rexxutil.obj  rexxutil.def
  5.          LINK386 rexxutil.obj,rexxutil.dll,,REXX,rexxutil.def;
  6.  
  7. rexxutil.obj:     rexxutil.c
  8.          icc -c -Ge- rexxutil.c
  9.  
  10.  
  11.