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 | dumpsys.cpp |
| 6 | |
| 7 | LOCAL_SHARED_LIBRARIES := \ |
Mathias Agopian | 25ba5b6 | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 8 | libutils \ |
| 9 | libbinder |
| 10 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 11 | |
| 12 | ifeq ($(TARGET_OS),linux) |
| 13 | LOCAL_CFLAGS += -DXP_UNIX |
| 14 | #LOCAL_SHARED_LIBRARIES += librt |
| 15 | endif |
| 16 | |
| 17 | LOCAL_MODULE:= dumpsys |
| 18 | |
| 19 | include $(BUILD_EXECUTABLE) |