home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 3 Comm / 03-Comm.zip / RXCOMM.ZIP / RXCOMM.MAK < prev    next >
Makefile  |  1990-12-23  |  1KB  |  31 lines

  1. ############################################################################
  2. #                           RxComm.mak
  3. #                                                                       
  4. # NOTE:  This code has been released into the Public Domain by the      
  5. #        author.  This code has NOT been extensivly tested, being a     
  6. #        3 hour development project that was abandoned due to the speed 
  7. #        of the REXX interpreter under OS/2.  If you find any bugs,     
  8. #        or would like to contact the author, he can be reached at:     
  9. #                                                                       
  10. #   Copyright (c) 1990 by:     Mark C. Smith                            
  11. #                              2638 Marrietta                           
  12. #                              Farmersvilles, Tx 75234                  
  13. #                                                                       
  14. #                              214/484-4470                             
  15. #
  16. # This code requires REXX.LIB and REXXSAA.H which are included with the
  17. # IBM version of the OS/2 toolkit.
  18. #
  19. ############################################################################
  20.  
  21. CPARMS = -Alfu -G2s -DLINT_ARGS
  22.  
  23. all:    rxcomm.dll
  24.  
  25. .c.obj:
  26.         cl -c $(CPARMS) $*.c
  27.  
  28. rxcomm.dll:     rxcomm.obj
  29.         link $*,$*.dll,,os2+rexx+llibcdll,$*
  30.  
  31.