# makefile
# Created by IBM WorkFrame/2 MakeMake at 21:30:32 on 19 May 2000
#
# The actions included in this make file are:
#  Compile::C++ Compiler
#  Link::Linker
#  Bind::Resource Bind
#  Compile::Resource Compiler

.SUFFIXES:

.SUFFIXES: \
    .C .RC .obj .res 

.C.obj:
    @echo " Compile::C++ Compiler "
    icc.exe /Ih:\vidtlkt\h /Ss /Ti /Gm /C %s

{i:\DiveTV}.C.obj:
    @echo " Compile::C++ Compiler "
    icc.exe /Ih:\vidtlkt\h /Ss /Ti /Gm /C %s

.RC.res:
    @echo " Compile::Resource Compiler "
    rc.exe -r %s %|fF.RES

{i:\DiveTV}.RC.res:
    @echo " Compile::Resource Compiler "
    rc.exe -r %s %|fF.RES

all: \
    .\DiveTV.exe

.\DiveTV.exe: \
    .\DIVE.obj \
    .\DIVELIB.obj \
    .\DIALOG.obj \
    .\DIVE.res \
    {$(LIB)}cppon30.lib \
    {$(LIB)}vcai.lib \
    {$(LIB)}mmpm2.lib \
    {$(LIB)}_doscall.lib \
    {$(LIB)}_pmwin.lib \
    {$(LIB)}_pmgpi.lib \
    {$(LIB)}os2386.lib
    @echo " Link::Linker "
    @echo " Bind::Resource Bind "
    icc.exe @<<
     /B" /de /pmtype:pm /nod"
     /FeDiveTV.exe 
     cppon30.lib 
     vcai.lib 
     mmpm2.lib 
     _doscall.lib 
     _pmwin.lib 
     _pmgpi.lib 
     os2386.lib 
     .\DIVE.obj
     .\DIVELIB.obj
     .\DIALOG.obj
<<
    rc.exe .\DIVE.res DiveTV.exe

.\DIVE.obj: \
    i:\DiveTV\DIVE.C \
    {i:\DiveTV;h:\vidtlkt\h;$(INCLUDE);}dive.h \
    {i:\DiveTV;h:\vidtlkt\h;$(INCLUDE);}pmtv2rem.h

.\DIALOG.obj: \
    i:\DiveTV\DIALOG.C \
    {i:\DiveTV;h:\vidtlkt\h;$(INCLUDE);}wtv.h

.\DIVELIB.obj: \
    i:\DiveTV\DIVELIB.C \
    {i:\DiveTV;h:\vidtlkt\h;$(INCLUDE);}dive.h \
    {i:\DiveTV;h:\vidtlkt\h;$(INCLUDE);}pmtv2rem.h

.\DIVE.res: \
    i:\DiveTV\DIVE.RC \
    {i:\DiveTV;$(INCLUDE)}DIVE.ICO \
    {i:\DiveTV;$(INCLUDE)}dive.dlg \
    {i:\DiveTV;$(INCLUDE)}dive.h
