2000-09-26 11:48:28 +00:00
|
|
|
|
|
|
|
# very basic makefile for regression tests
|
|
|
|
#
|
|
|
|
# g++ 2.95 and greater
|
|
|
|
#
|
2002-04-24 10:50:23 +00:00
|
|
|
CXX= g++ $(INCLUDES) -I../../../../ -I./ $(CXXFLAGS) -L../../build/gcc $(LDFLAGS)
|
2000-09-26 11:48:28 +00:00
|
|
|
|
2002-04-24 10:50:23 +00:00
|
|
|
total : gcc_regress
|
|
|
|
./gcc_regress tests.txt
|
2000-09-26 11:48:28 +00:00
|
|
|
|
2002-04-24 10:50:23 +00:00
|
|
|
gcc_regress : tests.cpp parse.cpp regress.cpp
|
|
|
|
$(CXX) -O2 -o gcc_regress tests.cpp parse.cpp regress.cpp -lboost_regex $(LIBS)
|
2000-11-16 11:29:03 +00:00
|
|
|
|
|
|
|
debug : tests.cpp parse.cpp regress.cpp
|
2002-04-24 10:50:23 +00:00
|
|
|
$(CXX) -g -o gcc_regress tests.cpp parse.cpp regress.cpp -lboost_regex_debug $(LIBS)
|
|
|
|
|
|
|
|
|
2001-03-03 11:35:37 +00:00
|
|
|
|
2000-10-17 11:29:59 +00:00
|
|
|
|
2000-09-26 11:48:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-04-10 11:44:47 +00:00
|
|
|
|
2000-09-26 11:48:28 +00:00
|
|
|
|
|
|
|
|