forked from TrueCloudLab/frostfs-dev-env
f8d2708e1a
Made it print targets with / symbol Signed-off-by: Angira Kekteeva <kira@nspcc.ru>
11 lines
315 B
Makefile
11 lines
315 B
Makefile
.PHONY: help
|
|
|
|
# Show this help prompt
|
|
help:
|
|
@echo ' Usage:'
|
|
@echo ''
|
|
@echo ' make <target>'
|
|
@echo ''
|
|
@echo ' Targets:'
|
|
@echo ''
|
|
@awk '/^#/{ comment = substr($$0,3) } comment && /^[a-zA-Z][a-zA-Z0-9._/-]+ ?:/{ print " ", $$1, comment }' $(MAKEFILE_LIST) | column -t -s ':' | grep -v 'IGNORE' | sort -u
|