• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5	cmd.cpp
6
7LOCAL_SHARED_LIBRARIES := \
8	libutils \
9	liblog \
10    libselinux \
11	libbinder
12
13LOCAL_C_INCLUDES += \
14    $(JNI_H_INCLUDE)
15
16ifeq ($(TARGET_OS),linux)
17	LOCAL_CFLAGS += -DXP_UNIX
18	#LOCAL_SHARED_LIBRARIES += librt
19endif
20
21LOCAL_MODULE:= cmd
22
23include $(BUILD_EXECUTABLE)
24