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:
566 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 makefile for timer.exe |
---|
7 | # |
---|
8 | # GNU compiler GCC |
---|
9 | # |
---|
10 | CXX= $(INCLUDES) -I../../../../ -I./ $(CXXFLAGS) |
---|
11 | |
---|
12 | timer : regex_timer.cpp |
---|
13 | g++ $(CXX) -O2 -o timer regex_timer.cpp -L../../build/gcc $(LDFLAGS) -lboost_regex $(LIBS) |
---|
14 | |
---|
15 | debug : regex_timer.cpp timer.cpp |
---|
16 | g++ $(CXX) -g -o timer regex_timer.cpp -L../../build/gcc $(LDFLAGS) -lboost_regex_debug $(LIBS) |
---|
17 | |
---|
18 | |
---|
19 | |
---|
20 | |
---|
21 | |
---|
22 | |
---|
23 | |
---|
24 | |
---|
25 | |
---|
26 | |
---|
27 | |
---|
28 | |
---|
29 | |
---|
30 | |
---|
31 | |
---|
32 | |
---|
33 | |
---|
34 | |
---|
35 | |
---|
36 | |
---|
37 | |
---|
38 | |
---|
Note: See
TracBrowser
for help on using the repository browser.