2014-02-07 23:21:24 +02:00
|
|
|
#
|
2015-10-01 01:08:26 +03:00
|
|
|
# Copyright (c) 2015, Joyent, Inc.
|
2014-02-07 23:21:24 +02:00
|
|
|
#
|
2015-08-25 21:49:46 +03:00
|
|
|
# Makefile for node-triton
|
2014-02-07 23:21:24 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# Vars, Tools, Files, Flags
|
|
|
|
#
|
2015-08-25 21:49:46 +03:00
|
|
|
JS_FILES := bin/triton \
|
2015-09-25 22:24:37 +03:00
|
|
|
$(shell find lib test -name '*.js' | grep -v '/tmp/')
|
2014-02-07 23:21:24 +02:00
|
|
|
JSL_CONF_NODE = tools/jsl.node.conf
|
|
|
|
JSL_FILES_NODE = $(JS_FILES)
|
|
|
|
JSSTYLE_FILES = $(JS_FILES)
|
|
|
|
JSSTYLE_FLAGS = -f tools/jsstyle.conf
|
|
|
|
CLEAN_FILES += ./node_modules
|
|
|
|
|
|
|
|
include ./tools/mk/Makefile.defs
|
|
|
|
|
|
|
|
#
|
|
|
|
# Targets
|
|
|
|
#
|
|
|
|
.PHONY: all
|
|
|
|
all:
|
|
|
|
npm install
|
|
|
|
|
|
|
|
.PHONY: test
|
2015-10-05 17:31:45 +03:00
|
|
|
test: test-unit test-integration
|
|
|
|
|
|
|
|
.PHONY: test-unit
|
|
|
|
test-unit:
|
2015-09-03 06:30:07 +03:00
|
|
|
NODE_NDEBUG= ./node_modules/.bin/tape test/unit/*.test.js
|
2015-09-01 10:31:00 +03:00
|
|
|
|
|
|
|
.PHONY: test-integration
|
|
|
|
test-integration:
|
2015-09-03 06:30:07 +03:00
|
|
|
NODE_NDEBUG= ./node_modules/.bin/tape test/integration/*.test.js
|
2014-02-07 23:21:24 +02:00
|
|
|
|
2015-10-01 01:08:26 +03:00
|
|
|
.PHONY: clean
|
|
|
|
clean::
|
|
|
|
rm -f triton-*.tgz
|
|
|
|
|
|
|
|
# Ensure CHANGES.md and package.json have the same version.
|
|
|
|
.PHONY: versioncheck
|
|
|
|
versioncheck:
|
|
|
|
@echo version is: $(shell cat package.json | json version)
|
|
|
|
[[ `cat package.json | json version` == `grep '^## ' CHANGES.md | head -1 | awk '{print $$2}'` ]]
|
|
|
|
|
|
|
|
.PHONY: cutarelease
|
2015-10-01 01:14:05 +03:00
|
|
|
cutarelease: versioncheck
|
2015-10-01 01:08:26 +03:00
|
|
|
[[ `git status | tail -n1` == "nothing to commit, working directory clean" ]]
|
|
|
|
./tools/cutarelease.py -p triton -f package.json
|
|
|
|
|
2015-09-01 20:55:39 +03:00
|
|
|
.PHONY: git-hooks
|
|
|
|
git-hooks:
|
2015-09-03 06:23:31 +03:00
|
|
|
ln -sf ../../tools/pre-commit.sh .git/hooks/pre-commit
|
2015-09-01 20:55:39 +03:00
|
|
|
|
2014-02-07 23:21:24 +02:00
|
|
|
.PHONY: dumpvar
|
|
|
|
dumpvar:
|
|
|
|
@if [[ -z "$(VAR)" ]]; then \
|
|
|
|
echo "error: set 'VAR' to dump a var"; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
|
|
|
@echo "$(VAR) is '$($(VAR))'"
|
|
|
|
|
|
|
|
include ./tools/mk/Makefile.deps
|
|
|
|
include ./tools/mk/Makefile.targ
|
2015-09-01 21:45:56 +03:00
|
|
|
JSL_FLAGS += --nofilelist
|