Adding core target
[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 JQ_VER = $(shell cat version.txt)
41 VER = sed "s/@VERSION/${JQ_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; \
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 update_submodules:
102         @@if [ -d .git ]; then git submodule update --init --recursive --merge; fi
103
104 # update the submodules to the latest at the most logical branch
105 pull_submodules:
106         @@git submodule foreach "git pull origin \$$(git branch --no-color --contains \$$(git rev-parse HEAD) | grep -v \( | head -1)"
107         @@git submodule summary
108
109 pull: pull_submodules
110         @@git pull ${REMOTE} ${BRANCH}
111
112 .PHONY: all jquery lint min clean distclean update_submodules pull_submodules pull core