home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / warptlk3.zip / TOOLKIT / SAMPLES / REXX / API / RXMACDLL / MACRO.MAK < prev    next >
Text File  |  1995-08-24  |  270b  |  10 lines

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