summaryrefslogtreecommitdiff
path: root/sys/winks
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <ylatuya@gmail.com>2012-08-07 16:53:02 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2012-08-07 19:04:36 +0200
commit544840ff38ab616f359402cc784aef8112165825 (patch)
tree3c40c87e829b7c906b7c429dcad281c318a275b3 /sys/winks
parenta55786274dc297b34f3e0ddd226761d2b6c32c7c (diff)
downloadgstreamer-plugins-bad-544840ff38ab616f359402cc784aef8112165825.tar.gz
winks: integrate build with autotools
Diffstat (limited to 'sys/winks')
-rw-r--r--sys/winks/Makefile.am22
1 files changed, 15 insertions, 7 deletions
diff --git a/sys/winks/Makefile.am b/sys/winks/Makefile.am
index a89eef318..13dbe81b3 100644
--- a/sys/winks/Makefile.am
+++ b/sys/winks/Makefile.am
@@ -1,9 +1,17 @@
-# This plugin isn't buildable with autotools at this point in time, so just
-# ensure everything's listed in EXTRA_DIST
+plugin_LTLIBRARIES = libgstwinks.la
-EXTRA_DIST = \
- gstksclock.c gstksclock.h \
- gstksvideodevice.c gstksvideodevice.h \
- gstksvideosrc.c gstksvideosrc.h \
+libgstwinks_la_SOURCES = gstksclock.c \
+ gstksvideodevice.c \
+ gstksvideosrc.c \
kshelpers.c kshelpers.h \
- ksvideohelpers.c ksvideohelpers.h
+ ksvideohelpers.c
+libgstwinks_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
+ $(GST_PLUGINS_BASE_CFLAGS) $(DIRECTX_CFLAGS)
+libgstwinks_la_LIBADD = $(DIRECTSHOW_LIBS) \
+ $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_MAJORMINOR) \
+ -lgstinterfaces-$(GST_MAJORMINOR)
+libgstwinks_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(DIRECTX_LDFLAGS)
+libgstwinks_la_LIBTOOLFLAGS = --tag=disable-static
+
+noinst_HEADERS= gstksclock.h
+