Skip to content

Commit

Permalink
Merge pull request #42 from tbrowder/master
Browse files Browse the repository at this point in the history
make the Makefile friendlier; remove colons from options (to avoid co…
  • Loading branch information
paultcochrane committed May 1, 2016
2 parents 0bf61e3 + 4d06b5b commit d41f572
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Makefile
Expand Up @@ -13,6 +13,17 @@ EXAMPLES_DEPS = \
Term::ANSIColor \
Term::termios

help:
@echo "Usage: make <option>"
@echo ""
@echo "Options:"
@echo " html generate the HTML documentation"
@echo " html-nohighlight generate HTML without syntax highlighting"
@echo " run-all run all examples"
@echo " test test the supporting software"
@echo " web-server display HTML on localhost:3000"
@echo " install-deps install dependencies required for examples"

html: install-deps
@echo "*** Generating HTML pages ***"
perl6 htmlify.pl
Expand Down Expand Up @@ -40,14 +51,3 @@ install-deps:
panda --notests install $$dep;\
fi;\
done

help:
@echo "Usage: make [html|test]"
@echo ""
@echo "Options:"
@echo " html: generate the HTML documentation"
@echo " html-nohighlight: generate HTML without syntax highlighting"
@echo " run-all: run all examples"
@echo " test: test the supporting software"
@echo " web-server: display HTML on localhost:3000"
@echo " install-deps: install dependencies required for examples"

0 comments on commit d41f572

Please sign in to comment.