forked from boostorg/regex
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)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|