blob: 275bbb2e17be50dc8f275423fd86a7628e76c7fc [file] [log] [blame]
Mike Lockwood94afecf2012-10-24 10:45:23 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5 service.cpp
6
7LOCAL_SHARED_LIBRARIES := libutils libbinder
8
9ifeq ($(TARGET_OS),linux)
10 LOCAL_CFLAGS += -DXP_UNIX
11 #LOCAL_SHARED_LIBRARIES += librt
12endif
13
14LOCAL_MODULE:= service
15
16include $(BUILD_EXECUTABLE)