summaryrefslogtreecommitdiffstats
path: root/tools/isprelinked/Android.mk
blob: e085f29ea8b32d70b532653f02e2fda1cfb6ae34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Copyright 2005 The Android Open Source Project
#
# Android.mk for apriori 
#

LOCAL_PATH:= $(call my-dir)

ifeq ($(TARGET_ARCH),arm)
include $(CLEAR_VARS)

LOCAL_LDLIBS += -ldl
LOCAL_CFLAGS += -O2 -g 
LOCAL_CFLAGS += -fno-function-sections -fno-data-sections -fno-inline 
LOCAL_CFLAGS += -Wall -Wno-unused-function #-Werror
LOCAL_CFLAGS += -DSUPPORT_ANDROID_PRELINK_TAGS
LOCAL_CFLAGS += -DARM_SPECIFIC_HACKS
LOCAL_CFLAGS += -DDEBUG

ifeq ($(HOST_OS),windows)
LOCAL_LDLIBS += -lintl
endif

LOCAL_SRC_FILES := \
	isprelinked.c \
	debug.c \
	prelink_info.c

LOCAL_C_INCLUDES:= \
	$(LOCAL_PATH)/ \
	external/elfutils/lib/ \
	external/elfutils/libelf/ \
	external/elfutils/libebl/ \
	external/elfcopy/

LOCAL_STATIC_LIBRARIES := libelfcopy libelf libebl libebl_arm #dl

LOCAL_MODULE := isprelinked

include $(BUILD_HOST_EXECUTABLE)
endif #TARGET_ARCH==arm