home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
viscobv6.zip
/
vac22os2
/
ibmcobol
/
samples
/
toolkit
/
tcpiptk
/
rcopy
/
borland.mak
next >
Wrap
Text File
|
1996-11-19
|
4KB
|
82 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. /
# /
#--------------------------------------------------------------------------/
# Make Directives
#--------------------------------------------------------------------------/
.AUTODEPEND
.SUFFIXES: .obj .c
#--------------------------------------------------------------------------/
# Make Macros
#--------------------------------------------------------------------------/
BCOS2_DIR = D:\BCOS2
TOOLKITLIB = C:\TOOLKIT\LIB
STARTUP = $(BCOS2_DIR)\lib\c02.obj
LIB = $(BCOS2_DIR)\lib
INCLUDE = $(BCOS2_DIR)\include;C:\TOOLKIT\H
CC = bcc -c -v -w
LFLAGS = -c -x -v -ap /w-stk
LINK = tlink $(LFLAGS) -L$(LIB) $(STARTUP)
LIBS = c2 + os2
DLLLIBS = $(TOOLKITLIB)\ftpapi+ \
c2mt + os2
#DLLLIBS = $(TOOLKITLIB)\so32dll+ \
# $(TOOLKITLIB)\tcp32dll+ \
# $(TOOLKITLIB)\ftpapi+ \
# c2mt + os2
#--------------------------------------------------------------------------/
# Make Rules
#--------------------------------------------------------------------------/
.c.obj:
$(CC) $(CFLAGS) -I$(INCLUDE) {$< }
#===========================================================================
# Explicit Rules
#===========================================================================
ALL : rcopy.exe
clean:
-del *.obj
-del *.exe
#--------------------------------------------------------------------------/
# Dependancies of the make
#--------------------------------------------------------------------------/
#ftpapi.lib: c:\tcpip\dll\ftpapi.dll
# implib ftpapi.lib c:\tcpip\dll\ftpapi.dll
rcopy.obj: rcopy.c
$(CC) -I$(INCLUDE) $(CFLAGS) /DOS2 rcopy.c
rcopy.exe: rcopy.obj rcopyb.def
$(LINK) rcopy.obj,rcopy.exe,,$(DLLLIBS),rcopyb.def
#==<eof>====================================================================