home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / 123rexx.zip / REXXLINK.MAK < prev    next >
Makefile  |  1993-06-16  |  1KB  |  24 lines

  1. #*****************************************************************************#
  2. #                                                                                                       #
  3. # Copyright (c) 1991, 1992 Lotus Development Corporation                                  #
  4. # 1-2-3 for OS/2 REXX @function and macro command support                           #
  5. #                                                                                                       #
  6. # Module:        rexxlink.mak                                                                   #
  7. # Description:  NMAKE file for REXX @function and macro command support         #
  8. #                                                                                                       #
  9. #*****************************************************************************#
  10.  
  11. # These flags for production.
  12. # CFLAGS= /C /Gm+ /Sm /Ge- /Ss /Gs- /Kboa /O+ /Ti- /I.
  13. # LINKARGS= /BAT /NOE    /MAP:4096
  14. # For now to get debug information
  15. CFLAGS= /C  /Gm+ /Sm /Ge- /Ss  /Gs- /Kboa /O- /Ti+ /I.
  16. LINKARGS= /BAT /NOE  /DE  /MAP:4096
  17.  
  18.  
  19. rexxlink.dll: rexxlink.obj rexxlink.def
  20.     link386 $(LINKARGS) rexxlink, rexxlink.dll, rexxlink, os2386+lep+rexx, rexxlink.def
  21.  
  22. rexxlink.obj: rexxlink.c rexxlink.mak
  23.     icc $(CFLAGS) rexxlink.c
  24.