home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ocl_ani2.zip / makefile < prev    next >
Makefile  |  1997-07-06  |  1KB  |  47 lines

  1. # makefile
  2. # Created by IBM WorkFrame/2 MakeMake at 17:16:05 on 6 July 1997
  3. #
  4. # The actions included in this make file are:
  5. #  Compile::Resource Compiler
  6. #  Compile::C++ Compiler (OCL/UICL - Dynamic)
  7. #  Link::Linker (OCL/UICL - Production)
  8. #  Bind::Resource Bind
  9.  
  10. .SUFFIXES: .cpp .obj .rc .res 
  11.  
  12. .all: \
  13.     .\ocl_ani2.exe
  14.  
  15. .rc.res:
  16.     @echo " Compile::Resource Compiler "
  17.     rc.exe -r -x2 %s %|dpfF.RES
  18.  
  19. {D:\c_dev\ocl_ani2}.rc.res:
  20.     @echo " Compile::Resource Compiler "
  21.     rc.exe -r -x2 %s %|dpfF.RES
  22.  
  23. .cpp.obj:
  24.     @echo " Compile::C++ Compiler (OCL/UICL - Dynamic) "
  25.     icc.exe /Fi /Si /O /Gm /Gd /G5 /Gu /C %s
  26.  
  27. {D:\c_dev\ocl_ani2}.cpp.obj:
  28.     @echo " Compile::C++ Compiler (OCL/UICL - Dynamic) "
  29.     icc.exe /Fi /Si /O /Gm /Gd /G5 /Gu /C %s
  30.  
  31. .\ocl_ani2.exe: \
  32.     .\ocl_ani2.obj \
  33.     .\person.obj \
  34.     .\application.obj \
  35.     .\ocl_ani2.res
  36.     @echo " Link::Linker (OCL/UICL - Production) "
  37.     @echo " Bind::Resource Bind "
  38.     icc.exe @<<
  39.      /B" /exepack:2 /pmtype:pm /packd /optfunc"
  40.      /Feocl_ani2.exe 
  41.      .\ocl_ani2.obj
  42.      .\person.obj
  43.      .\application.obj
  44. <<
  45.     rc.exe .\ocl_ani2.res ocl_ani2.exe
  46.  
  47. !include "makefile.DEP"