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