home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / me100.zip / Makefile < prev    next >
Makefile  |  1996-06-22  |  857b  |  38 lines

  1. # Created by IBM WorkFrame/2 MakeMake at 22:53:08 on 05/07/95
  2. #
  3. # This makefile should be run in the following directory:
  4. #   d:\work\modemengine
  5. #
  6. # The actions included in this makefile are:
  7. #   COMPILE::C Set ++ Compile
  8. #   LINK::C Set ++ Link
  9.  
  10. .all: \
  11.   .\ME.DLL
  12.  
  13. .SUFFIXES:
  14.  
  15. .SUFFIXES: .cpp
  16.  
  17. .cpp.obj:
  18.       @echo WF::COMPILE::C Set ++ Compile
  19.       icc.exe /Tdp /O /Gm /Ge- /G4 /C  %s
  20.  
  21. .\ModemEngine.def: .\ModemEngine.obj
  22.       @echo WF::Creating .def file
  23.       cppfilt -b -x -q ModemEngine.obj > temp.def && copy def.def + temp.def ModemEngine.def && implib ME.LIB ModemEngine.def
  24.  
  25. .\ME.DLL: \
  26.     .\ModemEngine.obj \
  27.     {$(LIB)}ModemEngine.def \
  28.     ModemEngine.MAK
  29.       @echo WF::LINK::C Set ++ Link
  30.       icc.exe @<<
  31.  /B" /packd"
  32.  /FeME.DLL
  33.  ModemEngine.def
  34.  .\ModemEngine.obj
  35. <<
  36. !include ModemEngine.Dep
  37.  
  38.