# HG changeset patch # User Nicolas Saunier # Date 1405110357 14400 # Node ID 7d051afcb22daef2a0bee52bf8bb69e20d7b9310 # Parent 3622a5653ee976c9f6960fa3235fed030b471fa2 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 diff -r 3622a5653ee9 -r 7d051afcb22d .hgignore --- 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 diff -r 3622a5653ee9 -r 7d051afcb22d Makefile --- /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