• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5	neo_err.c \
6	neo_files.c \
7	neo_misc.c \
8	neo_rand.c \
9	ulist.c \
10	neo_hdf.c \
11	neo_str.c \
12	neo_date.c \
13	wildmat.c \
14	ulocks.c \
15	neo_hash.c
16
17LOCAL_C_INCLUDES := $(LOCAL_PATH)/..
18LOCAL_CFLAGS := -fPIC
19
20LOCAL_NO_DEFAULT_COMPILER_FLAGS := true
21
22LOCAL_MODULE:= libneo_util
23
24include $(BUILD_HOST_SHARED_LIBRARY)
25
26# this forces us into 64 bit mode, even though for the non-simulator builds we
27# mostly don't do that.  Java on Hardy is 64 bit, and rather than finding a 32
28# bit java build, just build this in 64 bit.
29$(LOCAL_BUILT_MODULE): HOST_GLOBAL_CFLAGS:=
30$(LOCAL_BUILT_MODULE): HOST_GLOBAL_CPPFLAGS:=
31