formulaic/scripts/show-help.pl

4 lines
129 B
Perl
Raw Normal View History

2018-02-25 20:41:46 +00:00
#!/usr/bin/env perl -nl
# Extracts help entries and shows them.
m{^([\w\-]+\:).*?###(.*)$} && printf("make %-18s %s\n", $1, $2);