home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / me100.zip / sample.zip / makefile < prev    next >
Makefile  |  1996-04-28  |  1KB  |  56 lines

  1. # makefile
  2. # Created by IBM WorkFrame/2 MakeMake at 16:39:04 on 7 April 1996
  3. #
  4. # The actions included in this make file are:
  5. #  Compile::Resource Compiler
  6. #  Compile::C++ Compiler
  7. #  Link::Linker
  8. #  Bind::Resource Bind
  9.  
  10. .SUFFIXES: .CPP .Rc .obj .res
  11.  
  12. .all: \
  13.     .\general.exe
  14.  
  15. .Rc.res:
  16.     @echo " Compile::Resource Compiler "
  17.     rc.exe -r %s %|dpfF.RES
  18.  
  19. .CPP.obj:
  20.     @echo " Compile::C++ Compiler "
  21.     icc.exe /Tl- /Ti /Gm /G5 /C %s
  22.  
  23. .\general.exe: \
  24.     .\NOTEBOOK.obj \
  25.     .\notebook.res \
  26.     {$(LIB)}cppooc3.lib \
  27.     {$(LIB)}cppom30.lib \
  28.     \work\modemengine\me.lib \
  29.     makefile
  30.     @echo " Link::Linker "
  31.     @echo " Bind::Resource Bind "
  32.     icc.exe @<<
  33.      /B" /de /pmtype:pm /nop /optfunc"
  34.      /Fegeneral.exe
  35.      cppooc3.lib
  36.      cppom30.lib
  37.      \work\modemengine\me.lib
  38.      .\NOTEBOOK.obj
  39. <<
  40.     rc.exe .\notebook.res general.exe
  41.  
  42.  
  43. .\notebook.res: \
  44.     p:\WORK\answer.199b\generalsettings\notebook.Rc \
  45.     {$(INCLUDE)}dialog.dlg \
  46.     {$(INCLUDE)}notebook.ico \
  47.     {$(INCLUDE)}notebook.h \
  48.     makefile
  49.  
  50. .\NOTEBOOK.obj: \
  51.     p:\WORK\answer.199b\generalsettings\NOTEBOOK.CPP \
  52.     {p:\WORK\answer.199b\generalsettings;$(INCLUDE);}notebook.hpp \
  53.     {p:\WORK\answer.199b\generalsettings;$(INCLUDE);}notebook.h \
  54.     \work\modemengine\modemengine.hpp \
  55.     makefile
  56.