1LOCAL_PATH := $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_SRC_FILES := \ 5 src/pvmfmp4nodereg.cpp 6 7 8LOCAL_MODULE := libpvmp4reginterface 9 10LOCAL_CFLAGS := $(PV_CFLAGS) 11 12 13 14LOCAL_STATIC_LIBRARIES := 15 16LOCAL_SHARED_LIBRARIES := 17 18LOCAL_C_INCLUDES := \ 19 $(PV_TOP)/modules/linux_mp4/node_registry/src \ 20 $(PV_TOP)/modules/linux_mp4/node_registry/src \ 21 $(PV_INCLUDES) 22 23LOCAL_COPY_HEADERS_TO := $(PV_COPY_HEADERS_TO) 24 25LOCAL_COPY_HEADERS := \ 26 src/pvmfmp4nodereg.h 27 28include $(BUILD_STATIC_LIBRARY) 29