mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
19 lines
421 B
Makefile
19 lines
421 B
Makefile
|
SUBDIRS = amrwb-code
|
||
|
plugin_LTLIBRARIES = libgstamrwb.la
|
||
|
|
||
|
libgstamrwb_la_SOURCES = \
|
||
|
gstamrwb.c \
|
||
|
gstamrwbdec.c \
|
||
|
gstamrwbenc.c \
|
||
|
gstamrwbparse.c
|
||
|
|
||
|
libgstamrwb_la_CFLAGS = $(GST_CFLAGS) $(AMRWB_CFLAGS) -Iamrwb-code/
|
||
|
libgstamrwb_la_LIBADD = $(GST_BASE_LIBS) $(AMRWB_LIBS) amrwb-code/libamrwb.la
|
||
|
libgstamrwb_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||
|
|
||
|
noinst_HEADERS = \
|
||
|
gstamrwbdec.h \
|
||
|
gstamrwbenc.h \
|
||
|
gstamrwbparse.h
|
||
|
|