You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
319B

  1. LOCAL_PATH := $(call my-dir)
  2. include $(CLEAR_VARS)
  3. LOCAL_CFLAGS += -DOS_LINUX -DOS_ANDROID
  4. LOCAL_LDLIBS +=
  5. LOCAL_C_INCLUDES := $(LOCAL_PATH)
  6. LOCAL_C_INCLUDES += $(LOCAL_PATH)/include
  7. LOCAL_SRC_FILES += $(wildcard src/*.c)
  8. LOCAL_SRC_FILES += $(wildcard src/*.cpp)
  9. LOCAL_MODULE := mkv
  10. include $(BUILD_STATIC_LIBRARY)