blob: d565e57f43d5c700a060432a1dbbd15b5e3423be [file] [log] [blame]
Dianne Hackborn23eb1e22015-10-07 17:35:27 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5 cmd.cpp
6
7LOCAL_SHARED_LIBRARIES := \
8 libutils \
9 liblog \
Dianne Hackborn1941a402016-08-29 12:30:43 -070010 libselinux \
Dianne Hackborn23eb1e22015-10-07 17:35:27 -070011 libbinder
Dianne Hackborn1941a402016-08-29 12:30:43 -070012
13LOCAL_C_INCLUDES += \
14 $(JNI_H_INCLUDE)
Dianne Hackborn23eb1e22015-10-07 17:35:27 -070015
16ifeq ($(TARGET_OS),linux)
17 LOCAL_CFLAGS += -DXP_UNIX
18 #LOCAL_SHARED_LIBRARIES += librt
19endif
20
21LOCAL_MODULE:= cmd
22
23include $(BUILD_EXECUTABLE)