# Created by IBM WorkFrame/2 MakeMake at 22:53:08 on 05/07/95
#
# This makefile should be run in the following directory:
#   d:\work\modemengine
#
# The actions included in this makefile are:
#   COMPILE::C Set ++ Compile
#   LINK::C Set ++ Link

.all: \
  .\ME.DLL

.SUFFIXES:

.SUFFIXES: .cpp

.cpp.obj:
      @echo WF::COMPILE::C Set ++ Compile
      icc.exe /Tdp /O /Gm /Ge- /G4 /C  %s

.\ModemEngine.def: .\ModemEngine.obj
      @echo WF::Creating .def file
      cppfilt -b -x -q ModemEngine.obj > temp.def && copy def.def + temp.def ModemEngine.def && implib ME.LIB ModemEngine.def

.\ME.DLL: \
    .\ModemEngine.obj \
    {$(LIB)}ModemEngine.def \
    ModemEngine.MAK
      @echo WF::LINK::C Set ++ Link
      icc.exe @<<
 /B" /packd"
 /FeME.DLL
 ModemEngine.def
 .\ModemEngine.obj
<<
!include ModemEngine.Dep

