2023-11-30 14:15:19 +00:00

14 lines
249 B
Makefile

docs: index.html
index.html: lib/log.js
dox \
--title "Log.js" \
--desc "Tiny logger for [NodeJS](http://nodejs.org)." \
--ribbon "http://github.com/visionmedia/log.js" \
lib/log.js > $@
docclean:
rm -f index.html
.PHONY: docs docclean