35 lines
852 B
Makefile
Executable File
35 lines
852 B
Makefile
Executable File
|
|
|
|
|
|
include $(top_srcdir)/Makefile.inc
|
|
|
|
lib_LTLIBRARIES = libvdecoder.la
|
|
|
|
libvdecoder_la_SOURCES = fbm.c \
|
|
pixel_format.c \
|
|
vdecoder.c \
|
|
sbm/sbmStream.c \
|
|
sbm/sbmFrameH265.c \
|
|
sbm/sbmFrameH264.c \
|
|
sbm/sbmFrameBase.c
|
|
|
|
libvdecoder_la_CFLAGS = $(CFLAGS_CDCG)
|
|
LOCAL_INCLUDE = -I./ \
|
|
-I./videoengine \
|
|
-I./include \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/base/include \
|
|
-I$(top_srcdir)/base/include \
|
|
-I$(top_srcdir)/ve/include
|
|
|
|
libvdecoder_la_CFLAGS += $(LOCAL_INCLUDE)
|
|
|
|
|
|
libvdecoder_la_LDFLAGS = $(LDFLAGS_CDCG)
|
|
|
|
libvdecoder_la_LIBADD = $(top_srcdir)/base/libcdc_base.la \
|
|
$(top_srcdir)/memory/libMemAdapter.la
|
|
|
|
LOCAL_LIB = -ldl -lpthread -lVE -lvideoengine
|
|
libvdecoder_la_LDFLAGS += $(LOCAL_LIB)
|