forked from boostorg/regex
52 lines
297 B
Makefile
52 lines
297 B
Makefile
|
|
# very basic makefile for regression tests
|
|
#
|
|
# g++ 2.95 and greater
|
|
#
|
|
CXX= g++ -O2 -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++
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|