blob: ac2f4c051e11780fcb811485601a243781d6215c [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 \
10 libbinder
11
12
13ifeq ($(TARGET_OS),linux)
14 LOCAL_CFLAGS += -DXP_UNIX
15 #LOCAL_SHARED_LIBRARIES += librt
16endif
17
18LOCAL_MODULE:= cmd
19
20include $(BUILD_EXECUTABLE)