Line | |
---|
1 | # |
---|
2 | # very basic VC6 makefile for timer |
---|
3 | # |
---|
4 | CXX=cl |
---|
5 | CXXFLAGS=/Oityb1 /GF /Gy -GX -DSTRICT -I../../../../ -I./ |
---|
6 | LIBS=/link /LIBPATH:..\..\build\vc6 |
---|
7 | EXE=.exe |
---|
8 | OBJ=.obj |
---|
9 | |
---|
10 | LIBDEP= ../../../../boost/regex/detail/regex_options.hpp ../../../../boost/regex/detail/regex_config.hpp |
---|
11 | |
---|
12 | regex_timer$(EXE) : regex_timer$(OBJ) |
---|
13 | $(CXX) -o timer$(EXE) regex_timer$(OBJ) $(LIBS) |
---|
14 | |
---|
15 | regex_timer$(OBJ) : regex_timer.cpp $(LIBDEP) |
---|
16 | $(CXX) -c $(CXXFLAGS) regex_timer.cpp |
---|
17 | |
---|
18 | timer$(OBJ) : ../../../timer/timer.cpp $(LIBDEP) |
---|
19 | $(CXX) -c $(CXXFLAGS) ../../../timer/timer.cpp |
---|
20 | |
---|
21 | |
---|
22 | |
---|
23 | |
---|
24 | |
---|
25 | |
---|
26 | |
---|
27 | |
---|
28 | |
---|
29 | |
---|
30 | |
---|
31 | |
---|
32 | |
---|
33 | |
---|
34 | |
---|
Note: See
TracBrowser
for help on using the repository browser.