comparison Makefile @ 683:f3a0b652b590 dev

added function to display the speed distributions and optimize a little going through objects
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Fri, 05 Jun 2015 11:04:06 +0200
parents 5e09583275a4
children cc5cb04b04b0
comparison
equal deleted inserted replaced
682:fbe29be25501 683:f3a0b652b590
1 INSTALL_DIR = /usr/local/bin
1 2
2 cexe: 3 cexe:
3 @cd c && make feature-based-tracking 4 @cd c && make feature-based-tracking
4 5
5 doc: 6 doc:
15 @echo "=========================================" 16 @echo "========================================="
16 @echo "Copying feature-based tracking executable" 17 @echo "Copying feature-based tracking executable"
17 @cp bin/feature-based-tracking /usr/local/bin 18 @cp bin/feature-based-tracking /usr/local/bin
18 @echo "=========================================" 19 @echo "========================================="
19 @echo "Copying Python scripts" 20 @echo "Copying Python scripts"
20 @cp scripts/* /usr/local/bin 21 @cp scripts/* $(INSTALL_DIR)
21 22
22 uninstall: 23 uninstall:
23 @echo "Uninstalling for Linux" 24 @echo "Uninstalling for Linux"
24 rm /usr/local/bin/feature-based-tracking 25 rm $(INSTALL_DIR)/feature-based-tracking
25 @cd scripts && ./uninstall-scripts.sh 26 @cd scripts && ./uninstall-scripts.sh $(INSTALL_DIR)