1plugin_LTLIBRARIES = libgstttmlsubs.la 2 3# sources used to compile this plug-in 4libgstttmlsubs_la_SOURCES = \ 5 subtitle.c \ 6 subtitlemeta.c \ 7 gstttmlparse.c \ 8 gstttmlparse.h \ 9 ttmlparse.c \ 10 ttmlparse.h \ 11 gstttmlrender.c \ 12 gstttmlplugin.c 13 14# compiler and linker flags used to compile this plugin, set in configure.ac 15libgstttmlsubs_la_CFLAGS = \ 16 $(GST_PLUGINS_BASE_CFLAGS) \ 17 $(GST_BASE_CFLAGS) \ 18 $(GST_CFLAGS) \ 19 $(TTML_CFLAGS) 20 21libgstttmlsubs_la_LIBADD = \ 22 $(GST_PLUGINS_BASE_LIBS) \ 23 -lgstvideo-$(GST_API_VERSION) \ 24 $(GST_BASE_LIBS) \ 25 $(GST_LIBS) \ 26 $(TTML_LIBS) \ 27 $(LIBM) 28 29libgstttmlsubs_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) 30 31# headers we need but don't want installed 32noinst_HEADERS = \ 33 subtitle.h \ 34 subtitlemeta.h \ 35 gstttmlparse.h \ 36 ttmlparse.h \ 37 gstttmlrender.h 38