mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
86ac7ebab9
Original commit message from CVS: * s/filter/plugin/ * link plugins to GST_LIBS * rearrange rules to a common format
10 lines
335 B
Makefile
10 lines
335 B
Makefile
plugindir = $(libdir)/gst
|
|
|
|
plugin_LTLIBRARIES = libgstvorbis.la
|
|
|
|
libgstvorbis_la_SOURCES = vorbis.c vorbisenc.c vorbisdec.c
|
|
libgstvorbis_la_CFLAGS = $(GST_CFLAGS) $(VORBIS_CFLAGS)
|
|
## AM_PATH_VORBIS also sets VORBISENC_LIBS
|
|
libgstvorbis_la_LIBADD = $(GST_LIBS) $(VORBIS_LIBS) $(VORBISENC_LIBS)
|
|
|
|
noinst_HEADERS = vorbisenc.h vorbisdec.h
|