mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
4ed389812e
Original commit message from CVS: build as a lib not a plugin
17 lines
524 B
Makefile
17 lines
524 B
Makefile
librarydir = $(libdir)
|
|
|
|
library_LTLIBRARIES = libgstgconf.la
|
|
|
|
libgstgconf_la_SOURCES = gconf.c
|
|
|
|
libgstgconfincludedir = $(includedir)/@PACKAGE@-@VERSION@/gst/gconf
|
|
libgstgconfinclude_HEADERS = gconf.h
|
|
|
|
noinst_PROGRAMS = test-gconf
|
|
|
|
test_gconf_CFLAGS = $(GST_CFLAGS) $(GCONF_CFLAGS)
|
|
test_gconf_LDADD = $(GST_LIBS) $(GCONF_LIBS) libgstgconf.la
|
|
|
|
libgstgconf_la_LIBADD = $(GCONF_LIBS)
|
|
libgstgconf_la_CFLAGS = $(GST_CFLAGS) $(GCONF_CFLAGS)
|
|
libgstgconf_la_LDFLAGS = @GST_PLUGINS_LT_LDFLAGS@ -version-info @GST_PLUGINS_LIBVERSION@
|