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