home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / listpm.zip / source / ResLib / englist.mak < prev    next >
Text File  |  1996-06-30  |  956b  |  43 lines

  1. # englist.mak
  2. # Created by IBM WorkFrame/2 MakeMake at 15:35:09 on 30 June 1996
  3. #
  4. # The actions included in this make file are:
  5. #  Compile::C++ Compiler
  6. #  Link::Linker
  7. #  Bind::Resource Bind
  8.  
  9. .SUFFIXES: .cpp .obj 
  10.  
  11. .all: \
  12.     .\listpm.dll
  13.  
  14. .cpp.obj:
  15.     @echo " Compile::C++ Compiler "
  16.     icc.exe /Gm /Ge- /G4 /C %s
  17.  
  18. {g:\pe\local\os2\list\ipf}.cpp.obj:
  19.     @echo " Compile::C++ Compiler "
  20.     icc.exe /Gm /Ge- /G4 /C %s
  21.  
  22. {g:\pe\local\os2\list\Res}.cpp.obj:
  23.     @echo " Compile::C++ Compiler "
  24.     icc.exe /Gm /Ge- /G4 /C %s
  25.  
  26. .\listpm.dll: \
  27.     .\dummy.obj \
  28.     g:\pe\local\os2\list\Res\listpm.Res \
  29.     {$(LIB)}listeng.def \
  30.     englist.mak
  31.     @echo " Link::Linker "
  32.     @echo " Bind::Resource Bind "
  33.     icc.exe @<<
  34.      /Felistpm.dll 
  35.      listeng.def
  36.      .\dummy.obj
  37. <<
  38.     rc.exe g:\pe\local\os2\list\Res\listpm.Res listpm.dll
  39.  
  40. .\dummy.obj: \
  41.     g:\pe\local\os2\list\ResLib\dummy.cpp \
  42.     englist.mak
  43.