diff Makefile @ 554:7d051afcb22d

added back simple makefile to install the feature-based tracking executable and the scripts in /usr/local/bin so that they are accessible without typing the path to the source folder
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Fri, 11 Jul 2014 16:25:57 -0400
parents
children 5b534ad95bfb
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Makefile	Fri Jul 11 16:25:57 2014 -0400
@@ -0,0 +1,18 @@
+
+cexe:
+	@cd c && make feature-based-tracking
+
+doc:
+	doxygen
+
+clean:
+	@cd c && make clean
+	@cd python && rm *.pyc
+
+install: cexe
+	@echo "========================================="
+	@echo "Copying feature-based tracking executable"
+	@cp bin/feature-based-tracking /usr/local/bin
+	@echo "========================================="
+	@echo "Copying Python scripts"
+	@cp scripts/* /usr/local/bin
\ No newline at end of file