Files
regex/demo/regress/gcc.mak

55 lines
402 B
Makefile
Raw Normal View History

# very basic makefile for regression tests
#
# g++ 2.95 and greater
#
2000-11-16 11:29:03 +00:00
CXX= g++ -pedantic -Wall -I../../../../ -I./ -L../../lib/gcc
total : r2
./r2 tests.txt
r2 : tests.cpp parse.cpp regress.cpp
2000-11-16 11:29:03 +00:00
$(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