Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/regex/example/timer/vc6.mak @ 12

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

added boost

File size: 553 bytes
Line 
1#
2# very basic VC6 makefile for timer
3#
4CXX=cl
5CXXFLAGS=/Oityb1 /GF /Gy -GX -DSTRICT -I../../../../ -I./
6LIBS=/link /LIBPATH:..\..\build\vc6
7EXE=.exe
8OBJ=.obj
9
10LIBDEP= ../../../../boost/regex/detail/regex_options.hpp ../../../../boost/regex/detail/regex_config.hpp
11
12regex_timer$(EXE) : regex_timer$(OBJ)
13        $(CXX) -o timer$(EXE) regex_timer$(OBJ) $(LIBS)
14
15regex_timer$(OBJ) : regex_timer.cpp $(LIBDEP)
16        $(CXX) -c $(CXXFLAGS) regex_timer.cpp
17
18timer$(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.