Home | History | Annotate | Download | only in service
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_SRC_FILES:= \
      5 	service.cpp
      6 
      7 LOCAL_SHARED_LIBRARIES := libutils libbinder
      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)
     17