summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoyee Cheung <joyeec9h3@gmail.com>2017-03-27 13:39:55 +0800
committerJoyee Cheung <joyeec9h3@gmail.com>2017-04-11 11:26:58 +0800
commitc694633328bee261345dd29e7f2a014136c69015 (patch)
tree210b34514a9c65e4492ecb577b4c71be625502cb /Makefile
parent9decfb15215978b73094ffb7a4bdf2a0da010258 (diff)
downloadandroid-node-v8-c694633328bee261345dd29e7f2a014136c69015.tar.gz
android-node-v8-c694633328bee261345dd29e7f2a014136c69015.tar.bz2
android-node-v8-c694633328bee261345dd29e7f2a014136c69015.zip
build: sort phony rules
Sort phony rules and place them one per line for the ease of updating and backporting PR-URL: https://github.com/nodejs/node/pull/12059 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile75
1 files changed, 65 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index 7343aa3e75..6ad9719719 100644
--- a/Makefile
+++ b/Makefile
@@ -905,13 +905,68 @@ lint:
lint-ci: lint
endif
-.PHONY: lint cpplint jslint bench clean docopen docclean doc dist distclean \
- check uninstall install install-includes install-bin all staticlib \
- dynamiclib test test-all test-addons test-addons-clean build-addons \
- website-upload pkg blog blogclean tar binary release-only \
- bench-http-simple bench-idle bench-all bench bench-misc bench-array \
- bench-buffer bench-net bench-http bench-fs bench-tls cctest run-ci test-v8 \
- test-v8-intl test-v8-benchmarks test-v8-all v8 lint-ci bench-ci jslint-ci \
- doc-only $(TARBALL)-headers test-ci test-ci-native test-ci-js build-ci \
- clear-stalled coverage-clean coverage-build coverage-test coverage \
- list-gtests test-addons-napi build-addons-napi
+.PHONY: $(TARBALL)-headers \
+ all \
+ bench \
+ bench \
+ bench-all \
+ bench-array \
+ bench-buffer \
+ bench-ci \
+ bench-fs \
+ bench-http \
+ bench-http-simple \
+ bench-idle \
+ bench-misc \
+ bench-net \
+ bench-tls \
+ binary \
+ blog \
+ blogclean \
+ build-addons \
+ build-addons-napi \
+ build-ci \
+ cctest \
+ check \
+ clean \
+ clear-stalled \
+ coverage \
+ coverage-build \
+ coverage-clean \
+ coverage-test \
+ cpplint \
+ dist \
+ distclean \
+ doc \
+ doc-only \
+ docclean \
+ docopen \
+ dynamiclib \
+ install \
+ install-bin \
+ install-includes \
+ jslint \
+ jslint-ci \
+ lint \
+ lint-ci \
+ list-gtests \
+ pkg \
+ release-only \
+ run-ci \
+ staticlib \
+ tar \
+ test \
+ test-addons \
+ test-addons-clean \
+ test-addons-napi \
+ test-all \
+ test-ci \
+ test-ci-js \
+ test-ci-native \
+ test-v8 \
+ test-v8-all \
+ test-v8-benchmarks \
+ test-v8-intl \
+ uninstall \
+ v8 \
+ website-upload