~sergiusens/libhybris/autotests

« back to all changes in this revision

Viewing changes to hybris/common/ics/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Ricardo Salveti de Araujo
  • Date: 2013-06-04 07:33:11 UTC
  • Revision ID: package-import@ubuntu.com-20130604073311-20ldi2hm1axkvjl1
Tags: upstream-0.1.0+git20130601+dfb2e26
ImportĀ upstreamĀ versionĀ 0.1.0+git20130601+dfb2e26

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
if WANT_ARCH_ARM
 
2
ARCHFLAGS = -DHAVE_ARM_TLS_REGISTER -DANDROID_ARM_LINKER
 
3
endif
 
4
 
 
5
if  WANT_ARCH_X86
 
6
ARCHFLAGS = -DANDROID_X86_LINKER
 
7
endif
 
8
 
 
9
noinst_LTLIBRARIES = \
 
10
        libandroid-linker.la
 
11
libandroid_linker_la_SOURCES = \
 
12
        dlfcn.c \
 
13
        linker.c \
 
14
        linker_environ.c \
 
15
        linker_format.c \
 
16
        rt.c
 
17
libandroid_linker_la_CFLAGS = \
 
18
        -I$(top_srcdir)/include \
 
19
        -I$(top_srcdir)/common \
 
20
        -DLINKER_DEBUG=1 \
 
21
        -DLINKER_TEXT_BASE=0xB0000100 \
 
22
        -DLINKER_AREA_SIZE=0x01000000 \
 
23
        $(ARCHFLAGS)
 
24