1plugin_LTLIBRARIES = libgsttheora.la 2 3noinst_HEADERS = gsttheoraenc.h \ 4 gsttheoradec.h \ 5 gsttheoraparse.h 6 7libgsttheora_la_SOURCES = gsttheora.c \ 8 gsttheoraenc.c \ 9 gsttheoradec.c \ 10 gsttheoraparse.c 11 12libgsttheora_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(THEORA_CFLAGS) 13libgsttheora_la_LIBADD = \ 14 $(top_builddir)/gst-libs/gst/tag/libgsttag-$(GST_API_VERSION).la \ 15 $(top_builddir)/gst-libs/gst/video/libgstvideo-$(GST_API_VERSION).la \ 16 $(GST_BASE_LIBS) \ 17 $(GST_LIBS) \ 18 $(THEORA_LIBS) 19libgsttheora_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) 20 21