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

  1. # makefile
  2. # Created by IBM WorkFrame/2 MakeMake at 1:02:45 on 19 June 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_ani1.exe
  14.  
  15. .rc.res:
  16.     @echo " Compile::Resource Compiler "
  17.     rc.exe -r %s %|dpfF.RES
  18.  
  19. {d:\c_dev\be_ball}.rc.res:
  20.     @echo " Compile::Resource Compiler "
  21.     rc.exe -r %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\be_ball}.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_ani1.exe: \
  32.     .\ocl_ani1.obj \
  33.     .\ocl_ani1.res \
  34.     makefile
  35.     @echo " Link::Linker (OCL/UICL - Production) "
  36.     @echo " Bind::Resource Bind "
  37.     icc.exe @<<
  38.      /B" /exepack:2 /pmtype:pm /packd /optfunc"
  39.      /Feocl_ani1.exe 
  40.      .\ocl_ani1.obj
  41. <<
  42.     rc.exe .\ocl_ani1.res ocl_ani1.exe
  43.  
  44. .\ocl_ani1.res: \
  45.     d:\c_dev\be_ball\ocl_ani1.rc \
  46.     {d:\c_dev\be_ball;$(INCLUDE)}ocl_ani1.dlg \
  47.     {d:\c_dev\be_ball;$(INCLUDE)}ocl_ani1.h \
  48.     {d:\c_dev\be_ball;$(INCLUDE)}cap.ico \
  49.     makefile
  50.  
  51. .\ocl_ani1.obj: \
  52.     d:\c_dev\be_ball\ocl_ani1.cpp \
  53.     {d:\c_dev\be_ball;$(INCLUDE);}ocl_ani1.hpp \
  54.     {d:\c_dev\be_ball;$(INCLUDE);}ocl_ani1.h \
  55.     makefile
  56.