• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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#
8CXX=cl
9CXXFLAGS=/Oityb1 /GF /Gy -GX -DSTRICT -I../../../../ -I./
10LIBS=/link /LIBPATH:..\..\build\vc6
11EXE=.exe
12OBJ=.obj
13
14LIBDEP= ../../../../boost/regex/detail/regex_options.hpp ../../../../boost/regex/detail/regex_config.hpp
15
16regex_timer$(EXE) : regex_timer$(OBJ)
17	$(CXX) -o timer$(EXE) regex_timer$(OBJ) $(LIBS)
18
19regex_timer$(OBJ) : regex_timer.cpp $(LIBDEP)
20	$(CXX) -c $(CXXFLAGS) regex_timer.cpp
21
22timer$(OBJ) : ../../../timer/timer.cpp $(LIBDEP)
23	$(CXX) -c $(CXXFLAGS) ../../../timer/timer.cpp
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40