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