forked from TritonDataCenter/node-smartdc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
55 lines (44 loc) · 1.56 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#
# Copyright (c) 2013, Joyent, Inc. All rights reserved.
#
# Makefile: basic Makefile for template API service
#
# This Makefile is a template for new repos. It contains only repo-specific
# logic and uses included makefiles to supply common targets (javascriptlint,
# jsstyle, restdown, etc.), which are used by other repos as well. You may well
# need to rewrite most of this file, but you shouldn't need to touch the
# included makefiles.
#
# If you find yourself adding support for new targets that could be useful for
# other projects too, you should add these to the original versions of the
# included Makefiles (in eng.git) so that other teams can use them too.
#
#
# Tools
#
TAP := ./node_modules/.bin/tape
#
# Files
#
JS_FILES := $(shell find lib test -name '*.js') $(shell find bin -name 'sdc-*')
JSL_CONF_NODE = tools/jsl.node.conf
JSL_FILES_NODE = $(JS_FILES)
JSSTYLE_FILES = $(JS_FILES)
JSSTYLE_FLAGS = -o indent=4,doxygen,unparenthesized-return=0
include ./tools/mk/Makefile.defs
.PHONY: all
all $(TAP):
npm install
CLEAN_FILES += ./node_modules
.PHONY: test
test: $(TAP)
TAP=1 $(TAP) test/*.test.js
# Ensure all version-carrying files have the same version.
.PHONY: check-version
check-version:
@[[ `cat package.json | json version` == `grep '^## ' CHANGES.md | head -1 | awk '{print $$2}'` ]] \
|| (echo "check-version error: CHANGES.md top section version does not match package.json#version: $(shell cat package.json | json version)" && exit 2)
@echo Version check ok.
check:: check-version
include ./tools/mk/Makefile.deps
include ./tools/mk/Makefile.targ