# makefile
# Created by IBM WorkFrame/2 MakeMake at 3:36:58 on 17 April 1998
#
# The actions included in this make file are:
#  Compile::C++ Compiler
#  Link::Linker
#  Bind::Resource Bind
#  Compile::Resource Compiler

.SUFFIXES: .c .obj .rc .res 

.all: \
    .\ascii.exe

.c.obj:
    @echo " Compile::C++ Compiler "
    icc.exe /Tdp /O /Gm /C %s

{c:\data\c\ascii}.c.obj:
    @echo " Compile::C++ Compiler "
    icc.exe /Tdp /O /Gm /C %s

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

{c:\data\c\ascii}.rc.res:
    @echo " Compile::Resource Compiler "
    rc.exe -r %s %|dpfF.RES

.\ascii.exe: \
    .\ascii.obj \
    .\ascii.res \
    {$(LIB)}os2386.lib \
    {$(LIB)}cppom30.lib \
    {$(LIB)}ascii.def
    @echo " Link::Linker "
    @echo " Bind::Resource Bind "
    icc.exe @<<
     /Feascii.exe 
     os2386.lib 
     cppom30.lib 
     ascii.def
     .\ascii.obj
<<
    rc.exe .\ascii.res ascii.exe

.\ascii.obj: \
    c:\data\c\ascii\ascii.c \
    {c:\data\c\ascii;$(INCLUDE);}ascii.h

.\ascii.res: \
    c:\data\c\ascii\ascii.rc \
    {c:\data\c\ascii;$(INCLUDE)}ascii.h
