2006-07-16 17:24:25 +00:00
|
|
|
# copyright John Maddock 2003
|
|
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
|
|
# (See accompanying file LICENSE_1_0.txt or copy at
|
|
|
|
# http://www.boost.org/LICENSE_1_0.txt.
|
2000-09-26 11:48:28 +00:00
|
|
|
#
|
|
|
|
# very basic VC6 makefile for timer
|
|
|
|
#
|
|
|
|
CXX=cl
|
2000-12-03 12:16:18 +00:00
|
|
|
CXXFLAGS=/Oityb1 /GF /Gy -GX -DSTRICT -I../../../../ -I./
|
2001-08-18 11:50:48 +00:00
|
|
|
LIBS=/link /LIBPATH:..\..\build\vc6
|
2000-09-26 11:48:28 +00:00
|
|
|
EXE=.exe
|
|
|
|
OBJ=.obj
|
|
|
|
|
2001-04-12 11:14:59 +00:00
|
|
|
LIBDEP= ../../../../boost/regex/detail/regex_options.hpp ../../../../boost/regex/detail/regex_config.hpp
|
2000-09-26 11:48:28 +00:00
|
|
|
|
2001-01-31 11:39:04 +00:00
|
|
|
regex_timer$(EXE) : regex_timer$(OBJ)
|
|
|
|
$(CXX) -o timer$(EXE) regex_timer$(OBJ) $(LIBS)
|
2000-09-26 11:48:28 +00:00
|
|
|
|
|
|
|
regex_timer$(OBJ) : regex_timer.cpp $(LIBDEP)
|
|
|
|
$(CXX) -c $(CXXFLAGS) regex_timer.cpp
|
|
|
|
|
|
|
|
timer$(OBJ) : ../../../timer/timer.cpp $(LIBDEP)
|
|
|
|
$(CXX) -c $(CXXFLAGS) ../../../timer/timer.cpp
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2000-12-03 12:16:18 +00:00
|
|
|
|
2001-01-31 11:39:04 +00:00
|
|
|
|
2001-04-10 11:44:47 +00:00
|
|
|
|
2001-04-12 11:14:59 +00:00
|
|
|
|
2001-08-18 11:50:48 +00:00
|
|
|
|
2006-07-16 17:24:25 +00:00
|
|
|
|