mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 10:59:39 +00:00
15 lines
347 B
Makefile
15 lines
347 B
Makefile
|
plugin_LTLIBRARIES = libgstaiffparse.la
|
||
|
|
||
|
libgstaiffparse_la_SOURCES = aiffparse.c
|
||
|
libgstaiffparse_la_CFLAGS = \
|
||
|
$(GST_BASE_CFLAGS) \
|
||
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
||
|
$(GST_CFLAGS)
|
||
|
libgstaiffparse_la_LIBADD = \
|
||
|
$(GST_PLUGINS_BASE_LIBS) \
|
||
|
$(GST_BASE_LIBS) \
|
||
|
$(LIBM)
|
||
|
libgstaiffparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||
|
|
||
|
noinst_HEADERS = aiffparse.h
|