1
0

Android.mk 356 B

12345678910111213
  1. LOCAL_PATH := $(call my-dir)
  2. include $(CLEAR_VARS)
  3. LOCAL_MODULE_TAGS := optional
  4. LOCAL_C_INCLUDES := \
  5. system/core/base/include \
  6. system/core/init \
  7. external/selinux/libselinux/include
  8. LOCAL_CFLAGS := -Wall
  9. LOCAL_SRC_FILES := init_klte.cpp
  10. LOCAL_MODULE := libinit_klte
  11. LOCAL_STATIC_LIBRARIES := \
  12. libselinux
  13. include $(BUILD_STATIC_LIBRARY)