Files
regex/example/timer/gcc.mak

39 lines
566 B
Makefile
Raw Permalink Normal View History

# copyright John Maddock 2003
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt.
# very basic makefile for timer.exe
#
2000-11-16 11:29:03 +00:00
# GNU compiler GCC
#
2001-03-03 11:37:50 +00:00
CXX= $(INCLUDES) -I../../../../ -I./ $(CXXFLAGS)
timer : regex_timer.cpp
g++ $(CXX) -O2 -o timer regex_timer.cpp -L../../build/gcc $(LDFLAGS) -lboost_regex $(LIBS)
2000-11-16 11:29:03 +00:00
debug : regex_timer.cpp timer.cpp
g++ $(CXX) -g -o timer regex_timer.cpp -L../../build/gcc $(LDFLAGS) -lboost_regex_debug $(LIBS)
2001-03-03 11:37:50 +00:00