changeset 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 3622a5653ee9
children f13220f765e0
files .hgignore Makefile
diffstat 2 files changed, 18 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/.hgignore	Tue Jul 08 17:23:02 2014 -0400
+++ b/.hgignore	Fri Jul 11 16:25:57 2014 -0400
@@ -22,7 +22,6 @@
 
 CMakeCache.txt
 *.cmake
-Makefile
 install_manifest.txt
 
 latex
--- /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