From 3cca3b10b1ac4be89ef9ddb601a40ef219242960 Mon Sep 17 00:00:00 2001 From: "Justin R. Miller" Date: Mon, 20 Feb 2017 16:08:24 -0500 Subject: [android] add make android-help target (#8087) --- Makefile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f18629fa30..ae3df410a2 100644 --- a/Makefile +++ b/Makefile @@ -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 -- cgit v1.2.1