Makefile 249 B

1234567891011121314
  1. docs: index.html
  2. index.html: lib/log.js
  3. dox \
  4. --title "Log.js" \
  5. --desc "Tiny logger for [NodeJS](http://nodejs.org)." \
  6. --ribbon "http://github.com/visionmedia/log.js" \
  7. lib/log.js > $@
  8. docclean:
  9. rm -f index.html
  10. .PHONY: docs docclean