forked from boostorg/regex
ADDED: Forwarder functions to match_results. FIXED: More errors from Como in strict mode. [SVN r8826]
25 lines
388 B
Makefile
25 lines
388 B
Makefile
# Makefile for timer application
|
|
#
|
|
# for SUN workshop 5.0 C++ compiler
|
|
#
|
|
|
|
CXX=CC
|
|
CPP_FLAGS = -O -I../../../../ -I./
|
|
|
|
%.o : %.cpp
|
|
$(CXX) -c -o $@ $(CPP_FLAGS) $<
|
|
|
|
timer : regex_timer.o
|
|
$(CXX) -o $@ $(CPP_FLAGS) regex_timer.o -L../../lib -lregex++
|
|
|
|
timer.o : ../../../timer/timer.cpp
|
|
$(CXX) -c $(CPPFLAGS) ../../../timer/timer.cpp
|
|
|
|
clean:
|
|
rm -rf SunWS_cache
|
|
rm -f timer.o timer
|
|
|
|
|
|
|
|
|