home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / carsql.zip / carview.mak < prev    next >
Text File  |  1995-12-21  |  2KB  |  82 lines

  1. # carview.mak
  2. # Created by IBM WorkFrame/2 MakeMake at 14:57:33 on 21 Dec 1995
  3. #
  4. # The actions included in this make file are:
  5. #  Compile::C++ Compiler
  6. #  Link::Linker
  7. #  Bind::Resource Bind
  8. #  Compile::Resource Precompile
  9. #  Compile::Resource Compiler
  10.  
  11. .SUFFIXES: .CPP .RCX .obj .rc .res 
  12.  
  13. .all: \
  14.     .\carview.exe
  15.  
  16. .CPP.obj:
  17.     @echo " Compile::C++ Compiler "
  18.     icc.exe -DIC_TRACE_DEVELOP /Ti /Gm /Gd /G4 /C %s
  19.  
  20. .RCX.rc:
  21.     @echo " Compile::Resource Precompile "
  22.     icc.exe -c /Pc+ /Pe+ /Pd /I. %s > %|dpfF.rc
  23.  
  24. .rc.res:
  25.     @echo " Compile::Resource Compiler "
  26.     rc.exe -r %s %|dpfF.RES
  27.  
  28. .\carview.exe: \
  29.     .\CARVIEW.obj \
  30.     .\VBMAIN.obj \
  31.     .\CCSSRROR.obj \
  32.     .\CARVIEW.res \
  33.     {$(LIB)}carv.lib
  34.     @echo " Link::Linker "
  35.     @echo " Bind::Resource Bind "
  36.     icc.exe @<<
  37.     -DIC_TRACE_DEVELOP 
  38.      /Tdp 
  39.      /Gm /Gd /G4 
  40.      /B" /de /pmtype:pm"
  41.      /Fecarview.exe 
  42.      carv.lib 
  43.      .\CARVIEW.obj
  44.      .\VBMAIN.obj
  45.      .\CCSSRROR.obj
  46. <<
  47.     rc.exe .\CARVIEW.res carview.exe
  48.  
  49. .\CARVIEW.obj: \
  50.     f:\myproj\carsql\CARVIEW.CPP \
  51.     {f:\myproj\carsql;$(INCLUDE);}CarView.hpp \
  52.     {f:\myproj\carsql;$(INCLUDE);}CarView.h \
  53.     {f:\myproj\carsql;$(INCLUDE);}ccssrror.hpp \
  54.     {f:\myproj\carsql;$(INCLUDE);}idsexc.hpp \
  55.     {f:\myproj\carsql;$(INCLUDE);}ccssrror.h \
  56.     {f:\myproj\carsql;$(INCLUDE);}accerr.hpv \
  57.     {f:\myproj\carsql;$(INCLUDE);}Carv.hpp \
  58.     {f:\myproj\carsql;$(INCLUDE);}idsmcon.hpp
  59.  
  60. .\CCSSRROR.obj: \
  61.     f:\myproj\carsql\CCSSRROR.CPP \
  62.     {f:\myproj\carsql;$(INCLUDE);}ccssrror.hpp \
  63.     {f:\myproj\carsql;$(INCLUDE);}accerr.cpv \
  64.     {f:\myproj\carsql;$(INCLUDE);}idsexc.hpp \
  65.     {f:\myproj\carsql;$(INCLUDE);}ccssrror.h \
  66.     {f:\myproj\carsql;$(INCLUDE);}accerr.hpv
  67.  
  68. .\VBMAIN.obj: \
  69.     f:\myproj\carsql\VBMAIN.CPP \
  70.     {f:\myproj\carsql;$(INCLUDE);}CarView.hpp \
  71.     {f:\myproj\carsql;$(INCLUDE);}CarView.h
  72.  
  73. .\CARVIEW.rc: \
  74.     f:\myproj\carsql\CARVIEW.RCX \
  75.     {$(INCLUDE)}CarView.rci \
  76.     {$(INCLUDE)}ccssrror.rci \
  77.     {$(INCLUDE)}ccssrror.h \
  78.     {$(INCLUDE)}CarView.h
  79.  
  80. .\CARVIEW.res: \
  81.     .\CARVIEW.rc
  82.