https://github.com/duckietown/Software
Raw File
Tip revision: e8be20c2d40cc35808ce19ed1da1764e343e13bb authored by ThomasAckermann on 10 December 2017, 16:22:18 UTC
added part of Feedforward-Control in Curvature_needs to be checked again
Tip revision: e8be20c
Makefile.maintenance.mk

maintenance:
	@echo "$(sep)Maintenance"
	@echo
	@echo 'A couple of utilities for robot maintenance.'
	@echo
	@echo '- `make maintenance-fix-time`:     Fixes the time.'
	@echo '- `make  maintenance-clean-pyc`:    Removes pyc files.'
	@echo
	@echo
	
maintenance-fix-time:
	echo 'Calling ntpdate to fix time'
	sudo ntpdate -u us.pool.ntp.org
	# sudo ntpdate -s time.nist.gov

maintenance-clean-pyc:
	@echo
	@echo Cleaning '*.pyc' files around
	find catkin_ws/ -name '*.pyc' -delete
back to top