home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / viscobv6.zip / vac22os2 / ibmcobol / samples / toolkit / tcpiptk / echosamp / echoclnt / watcom.mak < prev   
Text File  |  1996-11-19  |  2KB  |  43 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. ALL : echoclnt.exe echoc1st.exe
  27.  
  28. echoclnt.obj : echoclnt.c watcom.mak
  29.    wcc386 -5s -bt=os2 echoclnt.c
  30.  
  31. echoclnt.exe: echoclnt.obj
  32.   wlink libp c:\toolkit\lib libr so32dll.lib,tcp32dll.lib sys os2v2 fil echoclnt
  33.  
  34. echoc1st.obj : echoc1st.c watcom.mak
  35.    wcc386 -5s -bt=os2 echoc1st.c
  36.  
  37. echoc1st.exe: echoc1st.obj
  38.   wlink libp c:\toolkit\lib libr so32dll.lib,tcp32dll.lib sys os2v2 fil echoc1st
  39.  
  40. clean:
  41.         -del *.obj
  42.         -del *.exe
  43.