mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 21:01:14 +00:00
01220dec57
Original commit message from CVS: - plugins are built without versioning info
11 lines
382 B
Makefile
11 lines
382 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)
|
|
libgstvorbis_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@
|
|
|
|
noinst_HEADERS = vorbisenc.h vorbisdec.h
|