view Makefile @ 658:6668f541b915

Added **kwargs passthrough to cvPlot()->cv2.line() for greater drawing flexibility.
author pstaub
date Thu, 14 May 2015 19:48:09 +0200
parents 5e09583275a4
children f3a0b652b590
line wrap: on
line source


cexe:
	@cd c && make feature-based-tracking

doc:
	doxygen

clean:
	@cd c && make clean
	@cd python && rm *.pyc

install: cexe
	@echo "========================================="
	@echo "Installing for Linux"
	@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

uninstall:
	@echo "Uninstalling for Linux"
	rm /usr/local/bin/feature-based-tracking 
	@cd scripts && ./uninstall-scripts.sh