https://github.com/duckietown/Software
Raw File
Tip revision: 99fae32516af64c4832575af04fc5d6da0c69d27 authored by Liam Paull on 27 November 2017, 19:15:11 UTC
Merge pull request #275 from duckietown/dev-eth-sup-learning
Tip revision: 99fae32
Makefile.stats.mk

stats:
	@echo "$(sep)Statistics"
	@echo
	@echo 'These provide statistics about the data and the configuration.'
	@echo
	@echo '- `make stats-easy_node`:  Prints summary of declared nots using the EasyNode frameworks.'
	@echo '- `make stats-easy_logs`:  Prints summary of available logs.'
	@echo '- `make stats-easy_algo`:  Prints summary of available algorithms.'
	@echo
	@echo
	
stats-easy_node:
	rosrun easy_node summary

stats-easy_logs:
	rosrun easy_logs summary

stats-easy_algo:
	rosrun easy_algo summary
back to top