Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/regex/example/timer/vc6.mak @ 47

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