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