home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / rxprior.zip / rxprior.mak < prev   
Text File  |  1994-01-18  |  845b  |  27 lines

  1. #---------------------------------------------------------------------
  2. #  Copyright IBM Corp., 1993,1994.  All Rights Reserved.
  3. #
  4. #  OS/2 is a registered trademark of the IBM Corp.
  5. #
  6. #  While the information provided herein is believed to be accurate, IBM
  7. #  does not warrant the information, and the information is provided "as
  8. #  is".
  9. #--------------------------------------------------------------------
  10.  
  11. #----------------------------------------------------------------------
  12. # Makefile for rxprior.dll
  13. #----------------------------------------------------------------------
  14.  
  15. COPTS = /C+ /W3 /Q+ /Gd- /Ge- /Gm+ /Ti+ /O-
  16. LOPTS = /ST:20000 /NOLOGO /DEBUG
  17.  
  18. OBJS  = rxprior.obj
  19. LIBS  = os2386 rexx
  20.  
  21. .c.obj:
  22.    icc $(COPTS) /Fo$@ $<
  23.  
  24. rxprior.dll : $(OBJS)
  25.    link386 $(LOPTS) $(OBJS),$@,nul,$(LIBS),rxprior.def;
  26.  
  27.