ref: 8d95d0841dfae8236ed4bb319156d7580ec3623a
parent: 3943119a68f716ddd69087e4301beb52a716c8ab
author: Martin Storsjö <martin@martin.st>
date: Tue Feb 25 18:46:50 EST 2014
Indent nested ifdefs in the android makefile This makes the makefile slightly more readable.
--- a/build/platform-android.mk
+++ b/build/platform-android.mk
@@ -9,11 +9,11 @@
GCCPATHPREFIX = arm-linux-androideabi
GCCPREFIX = arm-linux-androideabi
CFLAGS += -march=armv7-a -mfloat-abi=softfp
-ifeq (Yes, $(HAVE_NEON))
+ ifeq (Yes, $(HAVE_NEON))
CFLAGS += -mfpu=neon
-else
+ else
CFLAGS += -mfpu=vfpv3-d16
-endif
+ endif
LDFLAGS += -march=armv7-a -Wl,--fix-cortex-a8
APP_ABI = armeabi-v7a
else
@@ -21,11 +21,11 @@
GCCPREFIX = i686-linux-android
APP_ABI = x86
USE_ASM = Yes
-ifeq (Yes, $(USE_ASM))
+ ifeq (Yes, $(USE_ASM))
ASM = nasm
CFLAGS += -DX86_ASM
ASMFLAGS += -DNOPREFIX -f elf32 -DX86_32
-endif
+ endif
endif
ifndef NDKROOT