home *** CD-ROM | disk | FTP | other *** search
/ The Developer Connection…ice Driver Kit for OS/2 3 / DEV3-D1.ISO / devtools / os2tk21j / rexx / samples / rxmacdll / macro.ma_ / macro.mak
Encoding:
Text File  |  1993-03-12  |  270 b   |  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.