home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / threads.zip / asyncnot.mak < prev    next >
Text File  |  1996-02-19  |  1KB  |  60 lines

  1. # asyncnot.mak
  2. # Created by IBM WorkFrame/2 MakeMake at 16:46:26 on 19 Feb 1996
  3. #
  4. # The actions included in this make file are:
  5. #  Compile::C++ Compiler
  6. #  Link::Linker
  7. #  Lib::Import Lib
  8.  
  9. .SUFFIXES: .LIB .cpp .dll .obj 
  10.  
  11. .all: \
  12.     .\asyncnot.LIB
  13.  
  14. .cpp.obj:
  15.     @echo " Compile::C++ Compiler "
  16.     icc.exe /Gm /Gd /Ge- /C %s
  17.  
  18. .dll.LIB:
  19.     @echo " Lib::Import Lib "
  20.     implib.exe %|dpfF.LIB %s
  21.  
  22. .\asyncnot.dll: \
  23.     .\iasynthr.obj \
  24.     .\ievntsem.obj \
  25.     .\iasynbkg.obj \
  26.     .\iasyngui.obj \
  27.     .\iasyntfy.obj \
  28.     {$(LIB)}asyncnot.def
  29.     @echo " Link::Linker "
  30.     icc.exe @<<
  31.     /Tdp 
  32.      /Gm /Gd /Ge- 
  33.      /B" /noe"
  34.      /Feasyncnot.dll 
  35.      asyncnot.def
  36.      .\iasynthr.obj
  37.      .\ievntsem.obj
  38.      .\iasynbkg.obj
  39.      .\iasyngui.obj
  40.      .\iasyntfy.obj
  41. <<
  42.  
  43. .\iasynthr.obj: \
  44.     F:\threads\iasynthr.cpp
  45.  
  46. .\iasyntfy.obj: \
  47.     F:\threads\iasyntfy.cpp
  48.  
  49. .\iasyngui.obj: \
  50.     F:\threads\iasyngui.cpp
  51.  
  52. .\iasynbkg.obj: \
  53.     F:\threads\iasynbkg.cpp
  54.  
  55. .\ievntsem.obj: \
  56.     F:\threads\ievntsem.cpp
  57.  
  58. .\asyncnot.LIB: \
  59.     .\asyncnot.dll
  60.