Merge branch 'master' of git://github.com/jquery/jquery into fixedbuild
[jquery.git] / Makefile
1 SRC_DIR = src
2 TEST_DIR = test
3 BUILD_DIR = build
4
5 PREFIX = .
6 DIST_DIR = ${PREFIX}/dist
7
8 JS_ENGINE ?= `which node nodejs`
9 COMPILER = ${JS_ENGINE} ${BUILD_DIR}/uglify.js --unsafe
10 POST_COMPILER = ${JS_ENGINE} ${BUILD_DIR}/post-compile.js
11
12 BASE_FILES = ${SRC_DIR}/core.js\
13         ${SRC_DIR}/deferred.js\
14         ${SRC_DIR}/support.js\
15         ${SRC_DIR}/data.js\
16         ${SRC_DIR}/queue.js\
17         ${SRC_DIR}/attributes.js\
18         ${SRC_DIR}/event.js\
19         ${SRC_DIR}/selector.js\
20         ${SRC_DIR}/traversing.js\
21         ${SRC_DIR}/manipulation.js\
22         ${SRC_DIR}/css.js\
23         ${SRC_DIR}/ajax.js\
24         ${SRC_DIR}/ajax/jsonp.js\
25         ${SRC_DIR}/ajax/script.js\
26         ${SRC_DIR}/ajax/xhr.js\
27         ${SRC_DIR}/effects.js\
28         ${SRC_DIR}/offset.js\
29         ${SRC_DIR}/dimensions.js
30
31 MODULES = ${SRC_DIR}/intro.js\
32         ${BASE_FILES}\
33         ${SRC_DIR}/outro.js
34
35 JQ = ${DIST_DIR}/jquery.js
36 JQ_MIN = ${DIST_DIR}/jquery.min.js
37
38 SIZZLE_DIR = ${SRC_DIR}/sizzle
39
40 GIT_VER = $(shell git describe --tags --always --dirty)
41 VER = sed "s/@VERSION/${GIT_VER}/"
42
43 DATE=$(shell git log -1 --pretty=format:%ad)
44
45 all: update_submodules core
46
47 core: jquery min lint
48         @@echo "jQuery build complete."
49
50 ${DIST_DIR}:
51         @@mkdir -p ${DIST_DIR}
52
53 jquery: ${JQ}
54
55 ${JQ}: ${MODULES} | ${DIST_DIR}
56         @@echo "Building" ${JQ}
57
58         @@cat ${MODULES} | \
59                 sed 's/.function..jQuery...{//' | \
60                 sed 's/}...jQuery..;//' | \
61                 sed 's/@DATE/'"${DATE}"'/' | \
62                 ${VER} > ${JQ};
63
64 ${SRC_DIR}/selector.js: ${SIZZLE_DIR}/sizzle.js
65         @@echo "Building selector code from Sizzle"
66         @@sed '/EXPOSE/r src/sizzle-jquery.js' ${SIZZLE_DIR}/sizzle.js | grep -v window.Sizzle > ${SRC_DIR}/selector.js
67
68 lint: jquery
69         @@if test ! -z ${JS_ENGINE}; then \
70                 echo "Checking jQuery against JSLint..."; \
71                 ${JS_ENGINE} build/jslint-check.js ${JQ}; \
72         else \
73                 echo "You must have NodeJS installed in order to test jQuery against JSLint."; \
74         fi
75
76 min: ${JQ_MIN}
77
78 ${JQ_MIN}: jquery
79         @@if test ! -z ${JS_ENGINE}; then \
80                 echo "Minifying jQuery" ${JQ_MIN}; \
81                 ${COMPILER} ${JQ} > ${JQ_MIN}.tmp; \
82                 ${POST_COMPILER} ${JQ_MIN}.tmp > ${JQ_MIN}; \
83                 rm -f ${JQ_MIN}.tmp; \
84         else \
85                 echo "You must have NodeJS installed in order to minify jQuery."; \
86         fi
87         
88
89 clean:
90         @@echo "Removing Distribution directory:" ${DIST_DIR}
91         @@rm -rf ${DIST_DIR}
92
93         @@echo "Removing built copy of Sizzle"
94         @@rm -f src/selector.js
95
96 distclean: clean
97         @@echo "Removing submodules"
98         @@rm -rf test/qunit src/sizzle
99
100 # change pointers for submodules and update them to what is specified in jQuery
101 # --merge  doesn't work when doing an initial clone, thus test if we have non-existing
102 #  submodules, then do an real update
103 update_submodules:
104         @@if [ -d .git ]; then \
105                 if git submodule status | grep -q -E '^-'; then \
106                         git submodule update --init --recursive; \
107                 else \
108                         git submodule update --init --recursive --merge; \
109                 fi; \
110         fi;
111
112 # update the submodules to the latest at the most logical branch
113 pull_submodules:
114         @@git submodule foreach "git pull origin \$$(git branch --no-color --contains \$$(git rev-parse HEAD) | grep -v \( | head -1)"
115         @@git submodule summary
116
117 pull: pull_submodules
118         @@git pull ${REMOTE} ${BRANCH}
119
120 .PHONY: all jquery lint min clean distclean update_submodules pull_submodules pull core