Last change
on this file since 47 was
29,
checked in by landauf, 16 years ago
|
updated boost from 1_33_1 to 1_34_1
|
File size:
739 bytes
|
Line | |
---|
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 -GX -DSTRICT -I../../../../ -I./ |
---|
10 | LIBS=/link /LIBPATH:..\..\build\vc6 |
---|
11 | EXE=.exe |
---|
12 | OBJ=.obj |
---|
13 | |
---|
14 | LIBDEP= ../../../../boost/regex/detail/regex_options.hpp ../../../../boost/regex/detail/regex_config.hpp |
---|
15 | |
---|
16 | regex_timer$(EXE) : regex_timer$(OBJ) |
---|
17 | $(CXX) -o timer$(EXE) regex_timer$(OBJ) $(LIBS) |
---|
18 | |
---|
19 | regex_timer$(OBJ) : regex_timer.cpp $(LIBDEP) |
---|
20 | $(CXX) -c $(CXXFLAGS) regex_timer.cpp |
---|
21 | |
---|
22 | timer$(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 | |
---|
Note: See
TracBrowser
for help on using the repository browser.