changeset 1145:66f063ca2d24

bug correction for makefile
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Tue, 28 Apr 2020 10:17:49 -0400
parents 6a8fe3ed3bc6
children b219d5a1bb55
files Makefile c/Makefile
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Tue Apr 28 01:01:14 2020 -0400
+++ b/Makefile	Tue Apr 28 10:17:49 2020 -0400
@@ -29,7 +29,7 @@
 	@echo "Installing for Linux"
 	@echo "========================================="
 	@echo "Installing feature-based tracking executable"
-	@cp bin/feature-based-tracking /usr/local/bin
+	@cp bin/feature-based-tracking $(INSTALL_DIR)
 uninstall:
 	@echo "Uninstalling for Linux"
 	rm $(INSTALL_DIR)/feature-based-tracking 
--- a/c/Makefile	Tue Apr 28 01:01:14 2020 -0400
+++ b/c/Makefile	Tue Apr 28 10:17:49 2020 -0400
@@ -1,6 +1,6 @@
 EXE_DIR=../bin
 SCRIPTS_DIR=../scripts
-TRAJECTORYMANAGEMENT_DIR=$(HOME)/Research/Code/trajectorymanagementandanalysis/trunk/src/TrajectoryManagementAndAnalysis
+TRAJECTORYMANAGEMENT_DIR=../../trajectorymanagementandanalysis/trunk/src/TrajectoryManagementAndAnalysis
 
 CXX = g++