blob: 9c94c2ef3cf95ad29f4de12ad89a97dfdd178f1c [file] [log] [blame]
Mathias Agopian627e7b52009-05-21 19:21:59 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5 bootanimation_main.cpp \
6 BootAnimation.cpp
7
8# need "-lrt" on Linux simulator to pick up clock_gettime
9ifeq ($(TARGET_SIMULATOR),true)
10 ifeq ($(HOST_OS),linux)
11 LOCAL_LDLIBS += -lrt
12 endif
13endif
14
15LOCAL_SHARED_LIBRARIES := \
16 libcutils \
17 libutils \
18 libui \
19 libcorecg \
20 libsgl \
21 libEGL \
22 libGLESv1_CM
23
24LOCAL_C_INCLUDES := \
25 $(call include-path-for, corecg graphics)
26
27LOCAL_MODULE:= bootanimation
28
29
30include $(BUILD_EXECUTABLE)