Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add a "help" target with usage info to Makefile
  • Loading branch information
Paul Cochrane committed Mar 11, 2015
1 parent 6fd8df0 commit b02b36f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Makefile
@@ -1,4 +1,4 @@
.PHONY: html html-nohighlight test
.PHONY: html html-nohighlight test help

html:
perl6 htmlify.p6
Expand All @@ -8,3 +8,11 @@ html-nohighlight:

test:
prove --exec perl6 -r t

help:
@echo "Usage: make [html|html-nohighlight|test]"
@echo ""
@echo "Options:"
@echo " html: generate the HTML documentation"
@echo " html-nohighlight: generate HTML documentation without syntax highlighting"
@echo " test: run the test suite"

0 comments on commit b02b36f

Please sign in to comment.