regex fixes: retry due to lost connection

[SVN r7968]
This commit is contained in:
John Maddock
2000-10-17 11:29:59 +00:00
parent df6fa4ba79
commit f59c88d0bb
18 changed files with 747 additions and 573 deletions

View File

@ -13,11 +13,11 @@ all: r2 r5
%.o : %.cpp
$(CXX) -c -o $@ $(CPP_FLAGS) $<
r2 : r2.o
$(CXX) -o $@ $(CPP_FLAGS) r2.o -L../../lib -lregex++
r2 : tests.cpp parse.cpp regress.cpp
$(CXX) -o $@ $(CPP_FLAGS) tests.cpp parse.cpp regress.cpp -L../../lib -lregex++
r5 : r5.o
$(CXX) -o $@ $(CPP_FLAGS) r5.o -L../../lib -lregex++
r5 : tests.cpp parse.cpp regress.cpp
$(CXX) -o $@ $(CPP_FLAGS) -DTEST_UNICODE tests.cpp parse.cpp regress.cpp -L../../lib -lregex++
clean:
rm -rf SunWS_cache
@ -26,3 +26,4 @@ clean: