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