mirror of
https://github.com/boostorg/regex.git
synced 2025-07-14 21:06:38 +02:00
31 lines
332 B
Makefile
31 lines
332 B
Makefile
|
|
# very basic makefile for timer.exe
|
|
#
|
|
# GNU compiler GCC
|
|
#
|
|
CXX=-I../../../../ -I./
|
|
|
|
timer : regex_timer.cpp timer.cpp
|
|
g++ $(CXX) -O2 -o timer regex_timer.cpp timer.cpp -L../../lib/gcc -lregex++
|
|
|
|
debug : regex_timer.cpp timer.cpp
|
|
g++ $(CXX) -g -o timer regex_timer.cpp timer.cpp -L../../lib/gcc -lregex++debug
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|