https://github.com/duckietown/Software
Raw File
Tip revision: 622bd36fcbb3190986d3c02a6d4839e630cf3bec authored by Andrea Censi on 27 June 2018, 06:36:43 UTC
Merge branch 'andrea-devel-ipfs' of github.com:duckietown/Software into andrea-devel-ipfs
Tip revision: 622bd36
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