forked from google/traceur-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
295 lines (217 loc) · 8.77 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
RUNTIME_SRC = \
src/runtime/runtime.js \
src/runtime/url.js \
src/runtime/ModuleStore.js
SRC = \
src/runtime/polyfill-import.js \
src/traceur-import.js
TPL_GENSRC = \
src/outputgeneration/SourceMapIntegration.js
GENSRC = \
$(TPL_GENSRC) \
src/codegeneration/ParseTreeTransformer.js \
src/syntax/trees/ParseTreeType.js \
src/syntax/trees/ParseTrees.js \
src/syntax/ParseTreeVisitor.js
TPL_GENSRC_DEPS = $(addsuffix -template.js.dep, $(TPL_GENSRC))
PREV_NODE = $(wildcard node_modules/traceur/src/node/*.js)
SRC_NODE = $(wildcard src/node/*.js)
SRC_ALL = $(shell find src/ -type f -name "*.js")
RUNTIME_SCRIPTS = $(foreach src, $(RUNTIME_SRC), --script $(src))
TFLAGS = --
RUNTIME_TESTS = \
test/unit/runtime/System.js \
test/unit/runtime/Loader.js
UNIT_TESTS = \
test/unit/codegeneration/ \
test/unit/node/ \
test/unit/semantics/ \
test/unit/syntax/ \
test/unit/system/ \
test/unit/util/
TESTS = \
test/node-commonjs-test.js \
test/node-amd-test.js \
test/node-feature-test.js \
test/node-api-test.js \
$(RUNTIME_TESTS) \
$(UNIT_TESTS)
COMPILE_BEFORE_TEST = \
test/unit/semantics/FreeVariableChecker.generated.js \
test/unit/codegeneration/PlaceholderParser.generated.js
MOCHA_OPTIONS = \
--ignore-leaks --ui tdd --require test/node-env.js
ifdef ONLY
MOCHA_OPTIONS := $(MOCHA_OPTIONS) --grep $(ONLY)
endif
GIT_BRANCH = $(shell git rev-parse --abbrev-ref HEAD)
PACKAGE_VERSION=$(shell node build/printSemver.js)
build: bin/traceur.js wiki
min: bin/traceur.min.js
# Uses uglifyjs to compress. Make sure you have it installed
# npm install uglify-js -g
ugly: bin/traceur.ugly.js
test-runtime: bin/traceur-runtime.js $(RUNTIME_TESTS)
@echo 'Open test/runtime.html to test runtime only'
test: test/test-list.js bin/traceur.js $(COMPILE_BEFORE_TEST) \
test/unit/runtime/traceur-runtime \
wiki test/amd-compiled test/commonjs-compiled test-interpret \
test-interpret-absolute test-inline-module-error test-interpret-throw \
test-version test/unit/tools/SourceMapMapping
node_modules/.bin/mocha $(MOCHA_OPTIONS) $(TESTS)
test/unit/tools/SourceMapMapping: bin/traceur-runtime.js src/node/System.js test/unit/tools/SourceMapMapping.generated.js
node_modules/.bin/mocha $(MOCHA_OPTIONS) $^
test/unit: bin/traceur.js bin/traceur-runtime.js
node_modules/.bin/mocha $(MOCHA_OPTIONS) $(UNIT_TESTS)
rm -r -f test/unit/tools # only used for generated files currently.
test/unit/%-run: test/unit/% bin/traceur.js
node_modules/.bin/mocha $(MOCHA_OPTIONS) $<
test/commonjs: test/commonjs-compiled
node_modules/.bin/mocha $(MOCHA_OPTIONS) test/node-commonjs-test.js
test/amd: test/amd-compiled
node_modules/.bin/mocha $(MOCHA_OPTIONS) test/node-amd-test.js
test/features: bin/traceur.js bin/traceur-runtime.js test/test-list.js
node_modules/.bin/mocha $(MOCHA_OPTIONS) $(MOCHAX) test/node-feature-test.js
test-list: test/test-list.js
test/test-list.js: force
@git ls-files -o -c test/feature | node build/build-test-list.js > $@
test-interpret: test/unit/runtime/test_interpret.js
./traceur $^
test-interpret-throw: test/unit/runtime/throwsError.js
./traceur $^ 2>&1 | wc -l | grep '11'
test-interpret-absolute: $(CURDIR)/test/unit/runtime/test_interpret.js
./traceur $^
test-inline-module-error:
./traceur --out not-written.js \
test/feature/Modules/Error_ImportDefault.js 2>&1 | sed '1d'
# TODO(vojta): Trick make to only compile when necessary.
test/commonjs-compiled: force
node src/node/to-commonjs-compiler.js test/commonjs test/commonjs-compiled
test/amd-compiled: force
node src/node/to-amd-compiler.js test/amd test/amd-compiled
test/unit/%.generated.js: test/unit/es6/%.js
./traceur --out $@ $(TFLAGS) $<
test/unit/runtime/traceur-runtime: \
test/unit/runtime/traceur-runtime.js bin/traceur-runtime.js
node $<
test-version:
./traceur -v | grep 'traceur@[0-9]*\.[0-9*\.[0-9]*'
boot: clean build
clean: wikiclean
@rm -f build/compiled-by-previous-traceur.js
@rm -f build/previous-commit-traceur.js
@rm -rf build/node
@rm -rf build/currentSemVer.mk
@rm -f $(GENSRC) $(TPL_GENSRC_DEPS)
@rm -f $(COMPILE_BEFORE_TEST)
@rm -f test/test-list.js
@rm -rf test/commonjs-compiled/*
@rm -rf test/amd-compiled/*
@rm -f bin/*
$(NPM_INSTALL)
initbench:
rm -rf test/bench/esprima
git clone https://github.com/ariya/esprima.git test/bench/esprima
cd test/bench/esprima; git reset --hard 1ddd7e0524d09475
git apply test/bench/esprima-compare.patch
bin/%.min.js: bin/%.js
node build/minifier.js $^ $@
bin/traceur-runtime.js: $(RUNTIME_SRC) src/runtime/polyfill-import.js
./traceur --out $@ --referrer='traceur-runtime@$(PACKAGE_VERSION)/' \
$(RUNTIME_SCRIPTS) $(TFLAGS) src/runtime/polyfill-import.js
bin/traceur-bare.js: src/traceur-import.js build/compiled-by-previous-traceur.js
./traceur --out $@ $(TFLAGS) $<
concat: bin/traceur-runtime.js bin/traceur-bare.js
cat $^ > bin/traceur.js
bin/traceur.js: build/compiled-by-previous-traceur.js $(SRC_NODE)
@cp $< $@; touch -t 197001010000.00 bin/traceur.js
./traceur --out bin/traceur.js --referrer='traceur@$(PACKAGE_VERSION)/' \
$(RUNTIME_SCRIPTS) $(TFLAGS) $(SRC)
# Use last-known-good compiler to compile current source
build/compiled-by-previous-traceur.js: \
$(subst node_modules/traceur/src/node,build/node,$(PREV_NODE)) \
build/previous-commit-traceur.js $(SRC_ALL) | $(GENSRC) node_modules
@mkdir -p bin/
@cp build/previous-commit-traceur.js bin/traceur.js
./traceur-build --debug --out $@ --referrer='traceur@0.0.0/' \
$(RUNTIME_SCRIPTS) src/traceur-import $(TFLAGS) $(SRC)
build/node/%: node_modules/traceur/src/node/%
@mkdir -p build/node
cp $< $@
build/previous-commit-traceur.js:
cp node_modules/traceur/bin/traceur.js $@
debug: build/compiled-by-previous-traceur.js $(SRC)
./traceur --debug --out bin/traceur.js --sourcemap $(RUNTIME_SCRIPTS) $(TFLAGS) $(SRC)
self: build/previous-commit-traceur.js force
./traceur-build --debug --out bin/traceur.js $(RUNTIME_SCRIPTS) $(TFLAGS) $(SRC)
$(TPL_GENSRC_DEPS): | node_modules
src/syntax/trees/ParseTrees.js: \
build/build-parse-trees.js src/syntax/trees/trees.json
node $^ > $@
src/syntax/trees/ParseTreeType.js: \
build/build-parse-tree-type.js src/syntax/trees/trees.json
node $^ > $@
src/syntax/ParseTreeVisitor.js: \
build/build-parse-tree-visitor.js src/syntax/trees/trees.json
node $^ > $@
src/codegeneration/ParseTreeTransformer.js: \
build/build-parse-tree-transformer.js src/syntax/trees/trees.json
node $^ > $@
unicode-tables: \
build/build-unicode-tables.js
node $^ > src/syntax/unicode-tables.js
%.js: %.js-template.js
node build/expand-js-template.js $< $@
%.js-template.js.dep: | %.js-template.js
node build/expand-js-template.js --deps $| > $@
# set NO_PREPUBLISH=1 to prevent endless loop of makes and npm installs.
NPM_INSTALL = NO_PREPUBLISH=1 npm install --local && touch node_modules
node_modules/%:
$(NPM_INSTALL)
node_modules: package.json
$(NPM_INSTALL)
bin/traceur.ugly.js: bin/traceur.js
uglifyjs bin/traceur.js --compress -m -o $@
updateSemver: # unless the package.json has been manually edited.
git diff --quiet -- package.json && node build/incrementSemver.js
# --- Targets that push upstream.
# We start with a clean repo and an 'upstream' remote like github sets up.
git-upstream-checkout: # make sure we are on up-to-date upstream repo
git fetch upstream
-git branch -D upstream_master
git checkout -b upstream_master upstream/master
# Now we are on version N with N-1 in npm, update
npm-publish: git-upstream-checkout
$(MAKE) clean # sync to the npm version N-1
$(MAKE) test # build version N
npm publish # Publish built version N
update-version-number: npm-publish updateSemver
$(MAKE) clean # sync to the npm version N after update
$(MAKE) test # build version N+1
git-update-version: update-version-number
./traceur -v | xargs -I VERSION git commit -a -m "VERSION"
./traceur -v | xargs -I VERSION git tag -a VERSION -m "Tagged version VERSION "
git push --tags upstream upstream_master:master
git push upstream upstream_master:master # Push source for version N+1
# master was updated with version N+1, npm to version N
git-gh-rebase: git-update-version
-git branch -D upstream_gh_pages
git checkout -b upstream_gh_pages upstream/gh-pages
git rebase upstream_master
./traceur -v | xargs -I VERSION git commit -a -m "Rebase; commit binaries for VERSION"
git push -f upstream upstream_gh_pages:gh-pages
git-update-publish: git-gh-rebase
git checkout master
-git branch -D upstream_master # clean up
-git branch -D upstream_gh_pages
# ---
prepublish: bin/traceur.js bin/traceur-runtime.js
WIKI_OUT = \
test/wiki/CompilingOffline/out/greeter.js
wiki: $(WIKI_OUT)
wikiclean:
@rm -rf test/wiki/CompilingOffline/out
test/wiki/CompilingOffline/out/greeter.js: test/wiki/CompilingOffline/greeter.js
./traceur --out $@ $^
.PHONY: build min test test-list force boot clean distclean unicode-tables prepublish
-include $(TPL_GENSRC_DEPS)