| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_SRC_FILES:= \ |
| 5 | system_main.cpp |
| 6 | |
| 7 | LOCAL_SHARED_LIBRARIES := \ |
| 8 | libutils \ |
| Mathias Agopian | 25ba5b6 | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 9 | libbinder \ |
| The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 10 | libsystem_server |
| 11 | |
| 12 | LOCAL_C_INCLUDES := \ |
| 13 | $(JNI_H_INCLUDE) |
| 14 | |
| 15 | LOCAL_MODULE:= system_server |
| 16 | |
| 17 | include $(BUILD_EXECUTABLE) |
| 18 | |
| 19 | include $(LOCAL_PATH)/library/Android.mk |
| 20 | |