home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
VSCPPv8.zip
/
VACPP
/
IBMCPP
/
samples
/
IOC
/
DRAG3
/
MAKEFILE
< prev
next >
Wrap
Text File
|
1995-05-15
|
2KB
|
50 lines
#*******************************************************************************
#* SAMPLE PROJECT: ADRAG3 SAMPLE 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. *
#* *
#*******************************************************************************
ERASE=ERASE
.SUFFIXES:
.SUFFIXES: .c .cpp .rc
ALL: DRAG3.EXE \
DMSAMP3.RES
DRAG3.EXE: \
DMSAMP3.OBJ \
DMSAMP3.RES
ICC.EXE @<<
/B" /pmtype:pm"
/Fe"DRAG3.EXE"
DMSAMP3.OBJ
<<
RC DMSAMP3.RES DRAG3.EXE
{.}.rc.res:
RC -r -DIC_PM .\$*.RC
{.}.c.obj:
ICC.EXE /Gm /Gd /C .\$*.c
{.}.cpp.obj:
ICC.EXE /Gm /Gd /C .\$*.cpp
clean:
$(ERASE) dmsamp3.obj
$(ERASE) dmsamp3.res
$(ERASE) drag3.exe