forked from boostorg/regex
40 lines
623 B
Makefile
40 lines
623 B
Makefile
|
|
# very basic makefile for timer
|
|
#
|
|
CXX=@CXX@
|
|
CXXFLAGS=@CXXFLAGS@
|
|
LIBS=@LIBS@
|
|
EXE=@ac_exe_ext@
|
|
OBJ=@ac_obj_ext@
|
|
|
|
LIBDEP=../../build/libboost_regex.a ../../../../boost/regex/detail/regex_options.hpp ../../../../boost/regex/detail/regex_config.hpp
|
|
|
|
regex_timer$(EXE) : regex_timer$(OBJ)
|
|
$(CXX) -o timer$(EXE) regex_timer$(OBJ) -L../../build -lboost_regex $(LIBS)
|
|
|
|
regex_timer$(OBJ) : regex_timer.cpp $(LIBDEP)
|
|
$(CXX) -c $(CXXFLAGS) -DSTRICT -I../../../../ -I./ regex_timer.cpp
|
|
|
|
timer$(OBJ) : ../../../timer/timer.cpp $(LIBDEP)
|
|
$(CXX) -c $(CXXFLAGS) -DSTRICT -I../../../../ -I./ ../../../timer/timer.cpp
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|