home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
VSCPPv8.zip
/
VACPP
/
IBMCPP
/
samples
/
IOC
/
MAGNIFY
/
MAKEFILE
< prev
next >
Wrap
Text File
|
1995-05-15
|
3KB
|
59 lines
#*******************************************************************************
#* FILE NAME: Magnify Sample Program 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\magnify
# - 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: magnify.exe
magnify.exe: magnify.obj magnify.res
$(GLINK) $(GCPPLFLAGS) /Fe"magnify.exe" \
magnify.obj
rc magnify.res magnify.exe
magnify.obj: magnify.cpp magnify.hpp magnify.h
$(GCPPC) /C $(GCPPFLAGS) magnify.cpp
magnify.res: magnify.rc magnify.h
rc -r -DIC_PM magnify.rc
clean:
$(ERASE) magnify.exe
$(ERASE) magnify.res
$(ERASE) magnify.obj