mirror of
https://github.com/boostorg/regex.git
synced 2026-07-05 07:51:00 +02:00
ed21a5183b
[SVN r9752]
34 lines
380 B
Makefile
34 lines
380 B
Makefile
|
|
# very basic makefile for timer.exe
|
|
#
|
|
# GNU compiler GCC
|
|
#
|
|
CXX= $(INCLUDES) -I../../../../ -I./ $(CXXFLAGS)
|
|
|
|
timer : regex_timer.cpp
|
|
g++ $(CXX) -O2 -o timer regex_timer.cpp -L../../build/gcc $(LDFLAGS) -lboost_regex $(LIBS)
|
|
|
|
debug : regex_timer.cpp timer.cpp
|
|
g++ $(CXX) -g -o timer regex_timer.cpp -L../../build/gcc $(LDFLAGS) -lboost_regex_debug $(LIBS)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|