home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / rox.zip / roxsem.mak < prev    next >
Text File  |  1994-04-09  |  606b  |  20 lines

  1. #------------------------------------------------------------------
  2. # roxsem.mak :
  3. #------------------------------------------------------------------
  4. # 09-03-93 originally by Patrick J. Mueller
  5. #------------------------------------------------------------------
  6.  
  7. COPTS = /Ti+ /O- /C+ /W3 /Q+ /Kb+ /Gd- /Ge- /Gm+ /Gs+ /Sm /Ss /DOPSYS_OS2
  8. LOPTS = /DEBUG   /NOI /ST:20000 /NOLOGO
  9.  
  10. LIBS   = os2386 rexx rox
  11.  
  12. all: roxsem.dll
  13.  
  14. roxsem.dll   : roxsem.obj roxsem.def rox.lib
  15.    link386 $(LOPTS) roxsem.obj,$@,nul,$(LIBS) rox.lib,roxsem.def;
  16.  
  17. roxsem.obj   : roxapi.h
  18.    icc $(COPTS) /Fo$@ $*.c
  19.  
  20.