forked from boostorg/regex
ADDED: Forwarder functions to match_results. FIXED: More errors from Como in strict mode. [SVN r8826]
32 lines
302 B
Makefile
32 lines
302 B
Makefile
|
|
# very basic makefile for timer.exe
|
|
#
|
|
# GNU compiler GCC
|
|
#
|
|
CXX=-I../../../../ -I./
|
|
|
|
timer : regex_timer.cpp
|
|
g++ $(CXX) -O2 -o timer regex_timer.cpp -L../../lib/gcc -lregex++
|
|
|
|
debug : regex_timer.cpp timer.cpp
|
|
g++ $(CXX) -g -o timer regex_timer.cpp -L../../lib/gcc -lregex++debug
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|