mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
343 B
Makefile
25 lines
343 B
Makefile
#
|
|
# This configure file is just for Linux projects against Android
|
|
#
|
|
|
|
VOPRJ :=
|
|
VONJ :=
|
|
|
|
# WARNING:
|
|
# Using v7 breaks generic build
|
|
ifeq ($(TARGET_ARCH),arm)
|
|
VOTT := v5
|
|
else
|
|
VOTT := pc
|
|
endif
|
|
|
|
# Do we also need to check on ARCH_ARM_HAVE_ARMV7A? - probably not
|
|
ifeq ($(ARCH_ARM_HAVE_NEON),true)
|
|
VOTT := v7
|
|
endif
|
|
|
|
VOTEST := 0
|
|
|
|
VO_CFLAGS:=-DLINUX
|
|
|