home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / RXCALC.ZIP / PMREXX.MAK < prev    next >
Text File  |  1992-02-03  |  1KB  |  35 lines

  1. # NMAKE-compatible MAKE file for the REXX sample program PMREXX.EXE.
  2. # This uses the IBM C Set/2 compiler and LINK386
  3.  
  4. all: pmrexx.exe pmrexxio.dll pmrexxio.res pmrexx.res pmrexxio.hlp
  5.  
  6. pmrexx.obj: pmrexx.c pmrexx.h pmrexxio.h
  7.         icc /c /Gm+ $*.c
  8.  
  9. rxhafile.obj: rxhafile.c pmrexx.h
  10.         icc /c /Gm+ $*.c
  11.  
  12. pmrexxio.obj: pmrexxio.c pmrexxio.h rhdtatyp.h pmrxiodt.h
  13.         icc /c /Ge- /Gm+ $*.c
  14.  
  15. pmrxsubs.obj: pmrxsubs.c pmrexxio.h pmrxiodt.h
  16.         icc /c /Ge- /Gm+ $*.c
  17.  
  18. pmrexxio.hlp: pmrexxio.ipf
  19.          ipfc pmrexxio.ipf
  20.  
  21. pmrexx.res: pmrexx.rc pmrxhlp.rc pmrexx.h rxhdluse.h pmrxhlp.h pmrexx.ico
  22.         rc -r pmrexx.rc
  23.  
  24. pmrexxio.res: pmrexxio.rc rxiohlp.rc pmrexxio.h rxhdluse.h pmrexxio.hlp
  25.         rc -r pmrexxio.rc
  26.  
  27. pmrexx.exe: rxhafile.obj pmrexx.obj pmrexx.res pmrexx.def
  28.         link386  pmrexx+rxhafile,pmrexx.exe,pmrexx,rexx,pmrexx.def
  29.         rc pmrexx.res
  30.  
  31. pmrexxio.dll: pmrexxio.obj pmrxsubs.obj pmrexxio.res pmrexxio.def pmrexxio.hlp
  32.         link386  pmrexxio+pmrxsubs,pmrexxio.dll,pmrexxio,rexx,pmrexxio.def
  33.         rc pmrexxio.res pmrexxio.dll
  34.  
  35.