mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
bac83b472d
Original commit message from CVS: 2006-02-24 Julien MOUTTE <julien@moutte.net> * ext/Makefile.am: Disable annodex for now until we figure out how to make it build. * ext/gdk_pixbuf/Makefile.am: Note for Thomas : Add a rule to your checklist : "please try to at least build what you are going to commit into -good, or if you are too lazy to do that, please check that the buildbots are not crying because of your commit."
34 lines
998 B
Makefile
34 lines
998 B
Makefile
plugin_LTLIBRARIES = libgstgdkpixbuf.la
|
|
|
|
libgstgdkpixbuf_la_SOURCES = gstgdkpixbuf.c pixbufscale.c
|
|
libgstgdkpixbuf_la_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS) $(GST_BASE_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS)
|
|
libgstgdkpixbuf_la_LIBADD = $(GTK_LIBS) $(GST_LIBS) $(GST_BASE_LIBS)
|
|
libgstgdkpixbuf_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
|
|
#if
|
|
#loaderdir = $(DESTDIR)$(GDK_PIXBUF_LOADER_DIR)
|
|
#loader_LTLIBRARIES = gst_loader.la
|
|
#
|
|
#install-data-hook:
|
|
# if test -z "$(DESTDIR)" ; then \
|
|
# $(mkinstalldirs) $(DESTDIR)$(GDK_PIXBUF_CONF_DIR) ; \
|
|
# $(QUERYLOADERS) > $(DESTDIR)$(GDK_PIXBUF_CONF_DIR)/gdk-pixbuf.loaders ; \
|
|
# fi
|
|
#
|
|
#gst_loader_la_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS) -DGDK_PIXBUF_ENABLE_BACKEND
|
|
#gst_loader_la_SOURCES = \
|
|
# gstgdkanimation.c \
|
|
# gst_loader.c
|
|
#gst_loader_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) --avoid-version --module
|
|
#gst_loader_la_LIBADD = $(GTK_LIBS) $(GST_LIBS)
|
|
#else
|
|
install-data-hook:
|
|
true
|
|
#endif
|
|
|
|
noinst_HEADERS = gstgdkpixbuf.h \
|
|
pixbufscale.h \
|
|
gstgdkanimation.h
|
|
|