1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
LOCAL_PATH:= $(call my-dir) include $(CLEAR_VARS) LOCAL_SRC_FILES:= \ service.cpp LOCAL_SHARED_LIBRARIES := libutils libbinder ifeq ($(TARGET_OS),linux) LOCAL_CFLAGS += -DXP_UNIX #LOCAL_SHARED_LIBRARIES += librt endif LOCAL_MODULE:= service include $(BUILD_EXECUTABLE)