summaryrefslogtreecommitdiffstats
path: root/skia/corecg/Makefile
blob: 72f2f2ab000f323631716755b1afcc6d58e69512 (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
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_ARM_MODE := arm

LOCAL_SRC_FILES:= \
	Sk64.cpp \
	SkBuffer.cpp \
	SkChunkAlloc.cpp \
	SkCordic.cpp \
	SkDebug.cpp \
	SkDebug_stdio.cpp \
	SkFloat.cpp \
	SkInterpolator.cpp \
	SkMath.cpp \
	SkMatrix.cpp \
	SkMemory_stdlib.cpp \
	SkPoint.cpp \
	SkRect.cpp \
	SkRegion.cpp

LOCAL_SHARED_LIBRARIES := \
	libcutils \
	libutils

LOCAL_C_INCLUDES += \
	include/corecg

#LOCAL_CFLAGS+= 
#LOCAL_LDFLAGS:= 

LOCAL_MODULE:= libcorecg

LOCAL_CFLAGS += -fstrict-aliasing

ifeq ($(TARGET_ARCH),arm)
	LOCAL_CFLAGS += -fomit-frame-pointer
endif

include $(BUILD_SHARED_LIBRARY)