mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
8246f755cf
Also remove GST_PLUGINS_BASE_LIBS from LIBADD since we don't need to link against any of the -base libs (we just use a define from the gstaudio headers).
14 lines
344 B
Makefile
14 lines
344 B
Makefile
plugin_LTLIBRARIES = libgstaiff.la
|
|
|
|
libgstaiff_la_SOURCES = aiffparse.c
|
|
libgstaiff_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS)
|
|
libgstaiff_la_LIBADD = \
|
|
$(GST_BASE_LIBS) \
|
|
$(LIBM)
|
|
libgstaiff_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstaiff_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = aiffparse.h
|