home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / viscobv6.zip / vac22os2 / ibmcobol / samples / toolkit / tcpiptk / rcopy / watcom.mak < prev   
Text File  |  1996-11-19  |  3KB  |  50 lines

  1. #********************************************************copyrite.xic******/
  2. #                                                                          /
  3. #   Licensed Materials - Property of IBM                                   /
  4. #   IBM TCP/IP for OS/2                                                    /
  5. #   (C) Copyright IBM Corporation. 1996.                                   /
  6. #                                                                          /
  7. #   All rights reserved.                                                   /
  8. #                                                                          /
  9. #   US Government Users Restricted Rights -                                /
  10. #   Use, duplication or disclosure restricted by GSA ADP Schedule          /
  11. #   Contract with IBM Corp.                                                /
  12. #                                                                          /
  13. #--------------------------------------------------------------------------/
  14. #                                                                          /
  15. #  DISCLAIMER OF WARRANTIES.  The following [enclosed] code is             /
  16. #  sample code created by IBM Corporation. This sample code is not         /
  17. #  part of any standard or IBM product and is provided to you solely       /
  18. #  for  the purpose of assisting you in the development of your            /
  19. #  applications.  The code is provided "AS IS", without                    /
  20. #  warranty of any kind.  IBM shall not be liable for any damages          /
  21. #  arising out of your use of the sample code, even if they have been      /
  22. #  advised of the possibility of such damages.                             /
  23. #                                                                          /
  24. #--------------------------------------------------------------------------/
  25.  
  26. #===========================================================================
  27. #        Explicit Rules
  28. #===========================================================================
  29.  
  30. ALL : rcopy.exe
  31.  
  32. clean:
  33.    -del *.obj
  34.    -del *.dll
  35.    -del *.exe
  36.  
  37. #---------------------------------------------------------------------------
  38.  
  39. ftpapi.lib: c:\tcpip\dll\ftpapi.dll
  40.    wlib ftpapi +c:\tcpip\dll\ftpapi.dll
  41.  
  42. rcopy.obj: rcopy.c
  43.    wcc386 -5s -bt=os2 rcopy.c
  44.  
  45. rcopy.exe: rcopy.obj ftpapi.lib
  46.    wlink libp c:\toolkit\lib libr ftpapi.lib sys os2v2 fil rcopy
  47.  
  48. #==<eof>====================================================================
  49.  
  50.