diff options
author | Justin R. Miller <incanus@codesorcery.net> | 2017-02-20 16:08:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-20 16:08:24 -0500 |
commit | 3cca3b10b1ac4be89ef9ddb601a40ef219242960 (patch) | |
tree | ab93d6691f5efb2108c33e5c3638f9ee44a23be1 /Makefile | |
parent | 62e8e64299ae1635e56df701a7c2264e8b37b77a (diff) | |
download | qtlocation-mapboxgl-3cca3b10b1ac4be89ef9ddb601a40ef219242960.tar.gz |
[android] add make android-help target (#8087)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -472,6 +472,28 @@ MBGL_ANDROID_DALVIKVM = dalvikvm$(if $(filter arm-v8-21 x86-64-21,$1),64,32) MBGL_ANDROID_APK_SUFFIX = $(if $(filter Release,$(BUILDTYPE)),release-unsigned,debug) MBGL_ANDROID_CORE_TEST_DIR = build/android-$1/$(BUILDTYPE)/core-tests +.PHONY: android-help +android-help: + @echo + @echo "Available Android architecture targets:" + @echo + @echo " make android-arm-v5-9" + @echo " (android-arm-v5)" + @echo " make android-arm-v7-9" + @echo " (android, android-arm-v7)" + @echo " make android-arm-v8-21" + @echo " (android-arm-v8)" + @echo " make android-mips-9" + @echo " (android-mips)" + @echo " make android-mips-64-21" + @echo " (android-mips-64)" + @echo " make android-x86-9" + @echo " (android-x86)" + @echo " make android-x86-64-21" + @echo " (android-x86-64)" + @echo " make apackage" + @echo + .PHONY: android-style-code android-style-code: node platform/android/scripts/generate-style-code.js |