diff -r 609fe893df8c -r c9558638fe42 src/work/athos/lp/Makefile --- a/src/work/athos/lp/Makefile Thu Mar 24 11:44:25 2005 +0000 +++ b/src/work/athos/lp/Makefile Thu Mar 24 12:15:50 2005 +0000 @@ -1,3 +1,12 @@ +CXXFLAGS = -Wall -ggdb --no-inline -I../../.. + +all: lp_test + lp_base.o: lp_base.cc lp_base.h lin_expr.h +lp_solver_skeleton.o: lp_solver_skeleton.cc lp_solver_skeleton.h lp_base.h \ + lin_expr.h +lp_test.o: lp_test.cc lp_base.h lin_expr.h lp_solver_skeleton.h lp_base.h \ + lin_expr.h - g++ -Wall -ggdb --no-inline -I../../.. -c $< \ No newline at end of file +lp_test: lp_test.o lp_base.o lp_solver_skeleton.o + g++ -o $@ $^ \ No newline at end of file