The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | |
| 3 | #include $(CLEAR_VARS) |
| 4 | #LOCAL_SRC_FILES := bctest.c binder.c |
| 5 | #LOCAL_MODULE := bctest |
| 6 | #include $(BUILD_EXECUTABLE) |
| 7 | |
| 8 | include $(CLEAR_VARS) |
| 9 | LOCAL_SHARED_LIBRARIES := liblog |
| 10 | LOCAL_SRC_FILES := service_manager.c binder.c |
| 11 | LOCAL_MODULE := servicemanager |
Glenn Kasten | d951d88 | 2010-03-09 18:38:25 -0800 | [diff] [blame] | 12 | ifeq ($(BOARD_USE_LVMX),true) |
Glenn Kasten | 871c16c | 2010-03-05 12:18:01 -0800 | [diff] [blame] | 13 | LOCAL_CFLAGS += -DLVMX |
Glenn Kasten | 871c16c | 2010-03-05 12:18:01 -0800 | [diff] [blame] | 14 | endif |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 15 | include $(BUILD_EXECUTABLE) |