forked from legastero/stanza
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
37 lines (23 loc) · 797 Bytes
/
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
include node_modules/make-better/core.inc
NAME = stanzaio
STANDALONE = XMPP
MAIN = index.js
LIB = $(call find_recursive,lib,*.js)
# -- Tasks ------------------------------------------------------------
.PHONY: all lint test audit clean
all: test build audit
build: lint build/$(NAME).zip
clean:
rm -rf build
test: lint
node test/index.js | tap-spec
lint:
jshint .
# -- Build artifacts --------------------------------------------------
build/$(NAME).zip: build/$(NAME).bundle.js build/$(NAME).bundle.min.js
zip -j $@ $^
build/$(NAME).bundle.js: $(MAIN) $(LIB)
mkdir -p build
browserify --full-paths --standalone $(STANDALONE) $(MAIN) > $@
build/$(NAME).bundle.min.js: build/$(NAME).bundle.js
uglifyjs --screw-ie8 --compress --mangle --keep-fnames build/$(NAME).bundle.js > $@