vc6-stlport.mak 776 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. # copyright John Maddock 2003
  2. # Distributed under the Boost Software License, Version 1.0.
  3. # (See accompanying file LICENSE_1_0.txt or copy at
  4. # http://www.boost.org/LICENSE_1_0.txt.
  5. #
  6. # very basic VC6 makefile for timer
  7. #
  8. CXX=cl
  9. CXXFLAGS=/Oityb1 /GF /Gy -MT -GX -DSTRICT -I../../../../ -I./
  10. LIBS=/link /LIBPATH:..\..\build\vc6-stlport kernel32.lib user32.lib
  11. EXE=.exe
  12. OBJ=.obj
  13. LIBDEP= ../../../../boost/regex/detail/regex_options.hpp ../../../../boost/regex/detail/regex_config.hpp
  14. regex_timer$(EXE) : regex_timer$(OBJ)
  15. $(CXX) -o timer$(EXE) regex_timer$(OBJ) $(LIBS)
  16. regex_timer$(OBJ) : regex_timer.cpp $(LIBDEP)
  17. $(CXX) -c $(CXXFLAGS) regex_timer.cpp
  18. timer$(OBJ) : ../../../timer/timer.cpp $(LIBDEP)
  19. $(CXX) -c $(CXXFLAGS) ../../../timer/timer.cpp