Legend:
- Unmodified
- Added
- Removed
-
Makefile
r5 r7 2 2 CPPFLAGS=-g 3 3 4 all: test 04 all: testKF 5 5 6 6 test: test0 … … 8 8 9 9 clean: 10 rm *.o test0 10 rm *.o test0 testKF 11 11 12 12 test0: test0.cpp libBM.o libDC.o itpp_ext.o 13 13 testKF: testKF.o libKF.o libBM.o libDC.o itpp_ext.o 14 g++ -o $@ testKF.o libKF.o libBM.o libDC.o itpp_ext.o $(LDFLAGS)