home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
VSCPPv8.zip
/
VACPP
/
IBMCPP
/
samples
/
IOC
/
TBAR2
/
MAKEFILE
< prev
next >
Wrap
Text File
|
1995-05-15
|
3KB
|
60 lines
#*******************************************************************************
#* FILE NAME: Toolbar Sample Program 2 Makefile for OS/2 *
#* *
#* COPYRIGHT: *
#* ---------- *
#* Copyright (C) International Business Machines Corp., 1992,1995. *
#* *
#* DISCLAIMER OF WARRANTIES: *
#* ------------------------- *
#* The following [enclosed] code is sample code created by IBM *
#* Corporation. This sample code is not part of any standard 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 file assumptions:
# - Environment variable INCLUDE contains paths to:
# IBM Compiler target_directory\include;
# OS/2 Developer's Toolkit target_directory include paths
# - Environment variable LIB contains paths to:
# IBM Compiler target_directory\lib;
# OS/2 Developer's Toolkit target_directory lib paths
# - Current directory contains source files. Originals are in:
# IBM Compiler target_directory\samples\ioc\tbar2
# - current directory will be used to store:
# object, executable, and resource files
ERASE=ERASE
GCPPC=ICC.EXE
GLINK=ICC.EXE
ICLCPPOPTS=/GM /GD /DIC_TRACE_ALL /DIC_DEVELOP
GCPPFLAGS=$(LOCALOPTS) $(ICLCPPOPTS)
GCPPLFLAGS=/Tdp /B" /pmtype:pm"
all: tbar2.exe
tbar2.exe: tbar2.obj tbar2.res
$(GLINK) $(GCPPLFLAGS) /Fe"tbar2.exe" \
tbar2.obj
RC tbar2.res tbar2.exe
tbar2.obj: tbar2.cpp tbar2.hpp tbar2.h
$(GCPPC) /C $(GCPPFLAGS) tbar2.cpp
tbar2.res: tbar2.rc tbar2.h
RC -r -DIC_PM tbar2.rc
clean:
$(ERASE) tbar2.exe
$(ERASE) tbar2.obj
$(ERASE) tbar2.res