home *** CD-ROM | disk | FTP | other *** search
/ The Developer Connection…ice Driver Kit for OS/2 3 / DEV3-D1.ISO / devtools / toolkt21 / rexx / samples / callrexx / callrexx.mak < prev   
Encoding:
Text File  |  1993-03-12  |  269 b   |  10 lines

  1. # NMAKE-compatible MAKE file for the REXX sample program CALLREXX.EXE.
  2. # This uses the IBM C Set/2 compiler and LINK386.
  3.  
  4. callrexx.exe:     callrexx.obj
  5.     LINK386 /PM:VIO callrexx.obj,callrexx.exe,,REXX,,
  6.  
  7. callrexx.obj:     callrexx.c
  8.     icc -c callrexx.c
  9.  
  10.