Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/regex/test/regress/gcc.mak @ 12

Last change on this file since 12 was 12, checked in by landauf, 17 years ago

added boost

File size: 604 bytes
Line 
1
2# very basic makefile for regression tests
3#
4# g++ 2.95 and greater
5#
6CXX= g++ $(INCLUDES) -L../../../../stage/lib -I../../../../ -I./ $(CXXFLAGS) -L../../build/gcc $(LDFLAGS)
7#
8# sources to compile for each test:
9#
10SOURCES=*.cpp
11
12total : gcc_regress
13        export LD_LIBRARY_PATH="../../build/gcc:$LD_LIBRARY_PATH" && ./gcc_regress tests.txt
14
15gcc_regress : $(SOURCES)
16        $(CXX) -O2 -o gcc_regress $(SOURCES) ../../build/gcc/libboost_regex-gcc*.a $(LIBS)
17
18debug : $(SOURCES)
19        $(CXX) -g -o gcc_regress $(SOURCES) ../../build/gcc/libboost_regex-gcc-d*.a $(LIBS)
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
Note: See TracBrowser for help on using the repository browser.