forked from rwaldron/jquery.eventsource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
56 lines (38 loc) · 1.1 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
56
BUILD_DIR = build
PREFIX = .
DIST_DIR = ${PREFIX}/dist
JS_ENGINE ?= `which node nodejs`
COMPILER = ${JS_ENGINE} ${BUILD_DIR}/uglify.js --unsafe
POST_COMPILER = ${JS_ENGINE} ${BUILD_DIR}/post-compile.js
SRC=jquery.eventsource.js
DIST = ${DIST_DIR}/jquery.eventsource.js
DIST_MIN = ${DIST_DIR}/jquery.eventsource.min.js
all: project min hint
@@echo "Project build complete."
${DIST_DIR}:
@@mkdir -p ${DIST_DIR}
project: ${DIST}
${DIST}: ${SRC} | ${DIST_DIR}
@@echo "Building" ${DIST}
@@cat ${SRC} > ${DIST};
min: project ${DIST_MIN}
${DIST_MIN}: ${DIST}
@@if test ! -z ${JS_ENGINE}; then \
echo "Minifying Project" ${DIST_MIN}; \
${COMPILER} ${DIST} > ${DIST_MIN}.tmp; \
${POST_COMPILER} ${DIST_MIN}.tmp > ${DIST_MIN}; \
rm -f ${DIST_MIN}.tmp; \
else \
echo "You must have NodeJS installed in order to minify Project."; \
fi
hint:
@@if test ! -z ${JS_ENGINE}; then \
echo "Hinting Project"; \
${JS_ENGINE} build/jshint-check.js; \
else \
echo "Nodejs is missing"; \
fi
clean:
@@echo "Removing Distribution directory:" ${DIST_DIR}
@@rm -rf ${DIST_DIR}
.PHONY: all project hint min