source:
downloads/boost_1_33_1/libs/regex/example/timer/gcc.mak
@
12
Last change on this file since 12 was 12, checked in by landauf, 17 years ago | |
---|---|
File size: 380 bytes |
Line | |
---|---|
1 | |
2 | # very basic makefile for timer.exe |
3 | # |
4 | # GNU compiler GCC |
5 | # |
6 | CXX= $(INCLUDES) -I../../../../ -I./ $(CXXFLAGS) |
7 | |
8 | timer : regex_timer.cpp |
9 | g++ $(CXX) -O2 -o timer regex_timer.cpp -L../../build/gcc $(LDFLAGS) -lboost_regex $(LIBS) |
10 | |
11 | debug : regex_timer.cpp timer.cpp |
12 | g++ $(CXX) -g -o timer regex_timer.cpp -L../../build/gcc $(LDFLAGS) -lboost_regex_debug $(LIBS) |
13 | |
14 | |
15 | |
16 | |
17 | |
18 | |
19 | |
20 | |
21 | |
22 | |
23 | |
24 | |
25 | |
26 | |
27 | |
28 | |
29 | |
30 | |
31 | |
32 | |
33 |
Note: See TracBrowser
for help on using the repository browser.