Regex point release 3.02

[SVN r8226]
This commit is contained in:
John Maddock
2000-11-16 11:29:03 +00:00
parent 680e5b9e13
commit 36e4289aaa
54 changed files with 293 additions and 200 deletions

View File

@ -3,13 +3,16 @@
#
# g++ 2.95 and greater
#
CXX= g++ -O2 -pedantic -Wall -I../../../../ -I./ -L../../lib/gcc
CXX= g++ -pedantic -Wall -I../../../../ -I./ -L../../lib/gcc
total : r2
./r2 tests.txt
r2 : tests.cpp parse.cpp regress.cpp
$(CXX) -o r2 tests.cpp parse.cpp regress.cpp -lregex++
$(CXX) -O2 -o r2 tests.cpp parse.cpp regress.cpp -lregex++
debug : tests.cpp parse.cpp regress.cpp
$(CXX) -g -o r2 tests.cpp parse.cpp regress.cpp -lregex++debug