home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / rexxma.zip / MAKEIBMC < prev    next >
Text File  |  1994-02-20  |  317b  |  11 lines

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