ROOT := $(shell pwd) PATH := ${ROOT}/node_modules/.bin:${PATH} NPM_PACKAGE := $(shell node -e 'process.stdout.write(require("./package.json").name)') NPM_VERSION := $(shell node -e 'process.stdout.write(require("./package.json").version)') HOMEPAGE := $(shell node -e 'process.stdout.write(require("./package.json").homepage)') TMP_PATH := /tmp/${NPM_PACKAGE}-$(shell date +%s) REMOTE_NAME ?= origin REMOTE_REPO ?= $(shell git config --get remote.${REMOTE_NAME}.url) CURR_HEAD := $(firstword $(shell git show-ref --hash HEAD | cut -b -6) master) GITHUB_PROJ := nodeca/${NPM_PACKAGE} help: echo "make help - Print this help" echo "make lint - Lint sources with JSHint" echo "make test - Lint sources and run all tests" echo "make doc - Build API docs" echo "make dev-deps - Install developer dependencies" echo "make gh-pages - Build and push API docs into gh-pages branch" echo "make publish - Set new version tag and publish npm package" echo "make todo - Find and list all TODOs" lint: if test ! `which jshint` ; then \ echo "You need 'jshint' installed in order to run lint." >&2 ; \ echo " $ make dev-deps" >&2 ; \ exit 128 ; \ fi jshint . --show-non-errors dev-deps: @if test ! `which npm` ; then \ echo "You need 'npm' installed." >&2 ; \ echo " See: http://npmjs.org/" >&2 ; \ exit 128 ; \ fi npm install jshint -g npm install --dev publish: @if test 0 -ne `git status --porcelain | wc -l` ; then \ echo "Unclean working tree. Commit or stash changes first." >&2 ; \ exit 128 ; \ fi @if test 0 -ne `git tag -l ${NPM_VERSION} | wc -l` ; then \ echo "Tag ${NPM_VERSION} exists. Update package.json" >&2 ; \ exit 128 ; \ fi git tag ${NPM_VERSION} && git push origin ${NPM_VERSION} npm publish https://github.com/${GITHUB_PROJ}/tarball/${NPM_VERSION} lib: lib/ndoc/plugins/parsers/javascript/parser.js lib/ndoc/plugins/parsers/javascript/parser.js: @if test ! `which jison` ; then \ echo "You need 'jison' installed in order to compile parsers." >&2 ; \ echo " $ make dev-deps" >&2 ; \ exit 128 ; \ fi jison src/js-parser.y && mv js-parser.js lib/ndoc/plugins/parsers/javascript/parser.js recompile-parsers: rm -f lib/ndoc/plugins/parsers/javascript/parser.js $(MAKE) lib todo: grep 'TODO' -n -r ./lib 2>/dev/null || test true .PHONY: publish lint test doc dev-deps gh-pages todo playground redo $(DOCS) .SILENT: help lint test doc todo DIRS = $(addprefix playground/,$(shell ls playground 2>/dev/null | sed '/index.html/d')) LIBS = $(addsuffix /lib,$(DIRS)) DOCS = $(addsuffix /doc,$(DIRS)) playground: $(DOCS) echo Indexing echo $(DOCS) | sed -r 's~playground/(\S+)/doc~