summaryrefslogtreecommitdiffstats
path: root/gst/videofilter/Makefile.am
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2003-07-02 05:22:47 +0000
committerDavid Schleef <ds@schleef.org>2003-07-02 05:22:47 +0000
commit23e47de3324577cc2cb76a11f21ba80cceac14fc (patch)
treeda290dfd0c0bbfc5bcc83b9949c14d7cf16720f0 /gst/videofilter/Makefile.am
parent7ec579da849ac9787dddee7a88f49a8b5c2c0e24 (diff)
GstVideofilter abstract class for video filters
Original commit message from CVS: GstVideofilter abstract class for video filters
Diffstat (limited to 'gst/videofilter/Makefile.am')
-rw-r--r--gst/videofilter/Makefile.am25
1 files changed, 25 insertions, 0 deletions
diff --git a/gst/videofilter/Makefile.am b/gst/videofilter/Makefile.am
new file mode 100644
index 00000000..0fd9bfd7
--- /dev/null
+++ b/gst/videofilter/Makefile.am
@@ -0,0 +1,25 @@
+plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
+
+plugin_LTLIBRARIES = libgstvideofilter.la
+noinst_LTLIBRARIES = libgstvideoexample.la
+
+noinst_HEADERS = gstvideofilter.h gstvideoexample.h
+
+EXTRA_DIST = gstvideotemplate.c gstvideotemplate.h make_filter
+
+libgstvideofilter_la_SOURCES = gstvideofilter.c
+libgstvideofilter_la_CFLAGS = $(GST_CFLAGS)
+libgstvideofilter_la_LIBADD =
+libgstvideofilter_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
+
+libgstvideoexample_la_SOURCES = gstvideoexample.c
+libgstvideoexample_la_CFLAGS = $(GST_CFLAGS)
+libgstvideoexample_la_LIBADD =
+libgstvideoexample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
+
+
+# no, this doesn't work if $(srcdir) != (builddir)
+gstvideoexample.c gstvideoexample.h: $(srcdir)/make_filter \
+ $(srcdir)/gstvideotemplate.c $(srcdir)/gstvideotemplate.h
+ $(srcdir)/make_filter Videoexample
+