From b93af7454f3cb654620a73f4bfb60c8c3bfcc71e Mon Sep 17 00:00:00 2001 From: Martin Miller Date: Fri, 31 Mar 2017 15:49:17 -0500 Subject: filter class testing--not complete --- tests/Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'tests/Makefile') diff --git a/tests/Makefile b/tests/Makefile index 37d1687..06e42ae 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -6,16 +6,23 @@ CXXFLAGS+=$(shell pkg-config --cflags eigen3 yaml-cpp) LIBS+=$(shell pkg-config --libs eigen3 yaml-cpp) #LIBS+=$(shell pkg-config --libs opencv) +.PHONY: all + +all: test_camera test_feature test_filter + test_camera: test_camera.o ../src/camera.o $(CXX) -o $@ $^ $(CXXFLAGS) ${LIBS} test_feature: ${OBJECT} $(CXX) -o $@ $^ $(CXXFLAGS) ${LIBS} +test_filter: test_filter.o ../src/filter.o + $(CXX) -o $@ $^ $(CXXFLAGS) ${LIBS} + .cpp.o: $(CXX) $(CXXFLAGS) ${LIBS} -c $< -o $@ .PHONY: clean clean: - rm -f test_camera test_feature *.o src/*.o + rm -f test_filter test_camera test_feature *.o src/*.o -- cgit v1.1