aboutsummaryrefslogtreecommitdiffstats
path: root/meowpp.test/GNUmakefile.targets
diff options
context:
space:
mode:
Diffstat (limited to 'meowpp.test/GNUmakefile.targets')
-rw-r--r--meowpp.test/GNUmakefile.targets14
1 files changed, 14 insertions, 0 deletions
diff --git a/meowpp.test/GNUmakefile.targets b/meowpp.test/GNUmakefile.targets
index 1fba995..6c1cd66 100644
--- a/meowpp.test/GNUmakefile.targets
+++ b/meowpp.test/GNUmakefile.targets
@@ -6,3 +6,17 @@ $(BIN)/dsa: $(OBJ)/dsa.o $(dsa_OBJS)
@echo Target: $@...
@$(CXX) $^ $(CXXFLAGS) `pkg-config --cflags --libs $(dsa_LIBS) 2>/dev/null` -o $@
+TARGETS := $(TARGETS) $(BIN)/autostitch
+autostitch_OBJS := $(OBJ)/autostitch_FeaturePointsDetector_Harris.o $(OBJ)/autostitch_K_Match.o $(OBJ)/autostitch_RansacCheck.o
+autostitch_LIBS := opencv
+$(BIN)/autostitch: $(OBJ)/autostitch.o $(autostitch_OBJS)
+ @echo Target: $@...
+ @$(CXX) $^ $(CXXFLAGS) `pkg-config --cflags --libs $(autostitch_LIBS) 2>/dev/null` -o $@
+
+TARGETS := $(TARGETS) $(BIN)/oo
+oo_OBJS :=
+oo_LIBS :=
+$(BIN)/oo: $(OBJ)/oo.o $(oo_OBJS)
+ @echo Target: $@...
+ @$(CXX) $^ $(CXXFLAGS) `pkg-config --cflags --libs $(oo_LIBS) 2>/dev/null` -o $@
+