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
Wrap
Text File
|
1996-11-19
|
3KB
|
50 lines
#********************************************************copyrite.xic******/
# /
# Licensed Materials - Property of IBM /
# IBM TCP/IP for OS/2 /
# (C) Copyright IBM Corporation. 1996. /
# /
# All rights reserved. /
# /
# US Government Users Restricted Rights - /
# Use, duplication or disclosure restricted by GSA ADP Schedule /
# Contract with IBM Corp. /
# /
#--------------------------------------------------------------------------/
# /
# DISCLAIMER OF WARRANTIES. The following [enclosed] code is /
# sample code created by IBM Corporation. This sample code is not /
# part of any standard or IBM product and is provided to you solely /
# for the purpose of assisting you in the development of your /
# applications. The code is provided "AS IS", without /
# warranty of any kind. IBM shall not be liable for any damages /
# arising out of your use of the sample code, even if they have been /
# advised of the possibility of such damages. /
# /
#--------------------------------------------------------------------------/
#===========================================================================
# Explicit Rules
#===========================================================================
ALL : rcopy.exe
clean:
-del *.obj
-del *.dll
-del *.exe
#---------------------------------------------------------------------------
ftpapi.lib: c:\tcpip\dll\ftpapi.dll
wlib ftpapi +c:\tcpip\dll\ftpapi.dll
rcopy.obj: rcopy.c
wcc386 -5s -bt=os2 rcopy.c
rcopy.exe: rcopy.obj ftpapi.lib
wlink libp c:\toolkit\lib libr ftpapi.lib sys os2v2 fil rcopy
#==<eof>====================================================================