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
/
vacpp.mak
< prev
next >
Wrap
Text File
|
1996-11-19
|
3KB
|
89 lines
#--------------------------------------------------------------------------
#
# 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.
#===================================================================
#
# VACPP.MAK - VisualAge C++ ECHOCLNT Sample Make file
# Copyright IBM Corporation 1996
#
#===================================================================
#===================================================================
# Include the file ibmsamp.inc which defines the various macros
# depending on the target specified.
#
# The following macros are defined in ibmsamp.inc:
#
# OBJDIR - Directory where object files are created
# EXEDIR - Directory where executable files are created
# RC - Resource compiler
# RCFLAGS - Resource compiler flags
# LINK - Linker
# LFLAGS - Linker flags
# MTLIBS - Multithreaded versions of the runtime libraries
#===================================================================
!include ..\..\..\ibmsamp.inc
TCPIPLIBS = so32dll.lib tcp32dll.lib
CFLAGS = $(CFLAGS) /DOS2 /Sm /Ss /Q /W2 /Gm /Gt
#-------------------------------------------------------------------
#
# A list of all of the object files
#
#-------------------------------------------------------------------
OBJS1 = $(OBJDIR)\echoc1st.obj
OBJS2 = $(OBJDIR)\echoclnt.obj
#-------------------------------------------------------------------
# This section lists all files to be built by make. The
# makefile builds the executable as well as its associated help
# file.
#-------------------------------------------------------------------
all: $(EXEDIR)\echoclnt.exe $(EXEDIR)\echoc1st.exe
#-------------------------------------------------------------------
# Dependencies
# This section lists all object files needed to be built for the
# application, along with the files it is dependent upon (e.g.
# its source and any header files).
#-------------------------------------------------------------------
$(OBJDIR)\echoc1st.obj: echoc1st.c
$(OBJDIR)\echoclnt.obj: echoclnt.c
$(EXEDIR)\echoclnt.exe: $(OBJS2) echo.def vacpp.mak
-$(CREATE_PATH)
$(LINK) $@ echo.def $(MTLIBS) + $(TCPIPLIBS) $(OBJS2)
$(EXEDIR)\echoc1st.exe: $(OBJS1) echo.def vacpp.mak
-$(CREATE_PATH)
$(LINK) $@ echo.def $(MTLIBS) + $(TCPIPLIBS) $(OBJS1)
clean :
@if exist *.obj del *.obj
@if exist *.dll del *.dll
@if exist *.exe del *.exe