view Makefile @ 1184:f9cf827a73a6

minor bug with window length for savgol
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Fri, 01 Apr 2022 15:41:24 -0400
parents f67b4f892195
children 756bc885a573
line wrap: on
line source

INSTALL_DIR = /usr/local/bin
PYTHON_LIB_DIR = 

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

doc:
	doxygen

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

installpython:
	@echo "========================================="
	@echo "Installing Python modules and scripts"
	@tar cf /tmp/trafficintelligence.tar setup.py README trafficintelligence
	@gzip /tmp/trafficintelligence.tar
	@pip3 install /tmp/trafficintelligence.tar.gz
	@rm /tmp/trafficintelligence.tar.gz
	@cp scripts/* $(INSTALL_DIR)
uploadpython:
	@python setup.py sdist
	@twine upload dist/* --skip-existing
	#python setup.py sdist upload
	#python setup.py sdist bdist_wheel

install: cexe installpython
	@echo "========================================="
	@echo "Installing for Linux"
	@echo "========================================="
	@echo "Installing feature-based tracking executable"
	@cp bin/feature-based-tracking $(INSTALL_DIR)
uninstall:
	@echo "Uninstalling for Linux"
	rm $(INSTALL_DIR)/feature-based-tracking 
	@cd scripts && ./uninstall-scripts.sh $(INSTALL_DIR)