home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / rexxma.zip / MAKEFILE < prev    next >
Text File  |  1994-03-22  |  345b  |  14 lines

  1. # NMAKE-compatible MAKE file for the REXX sample program REXXMATH.DLL.
  2. # This uses the WATCOM C/C++ 32 v9.5 compiler
  3.  
  4. CC = wcc386 -bd -zq -j -zp4 -5s -os -fp5 -s -D__MIG_LIB__ -D_Optlink 
  5. LINK = wlink
  6.  
  7. rexxmath.dll:     rexxmath.obj  rexxmath.def
  8.          $(LINK) @rexxmath
  9.  
  10. rexxmath.obj:     rexxmath.c
  11.          $(CC) rexxmath.c
  12.  
  13.  
  14.