summaryrefslogtreecommitdiffstats
path: root/sys/waveform
diff options
context:
space:
mode:
authorJan Schmidt <thaytan@mad.scientist.com>2007-06-14 12:14:24 +0000
committerJan Schmidt <thaytan@mad.scientist.com>2007-06-14 12:14:24 +0000
commit93fb3e1e6a11068ade17d8274a04d87cc63d8bb3 (patch)
tree876cdb41643fc854eda641a9e7d7fbdd356b4aa4 /sys/waveform
parent98165a69eeb1236c9aa189e24acbf8be442131d3 (diff)
Make sure to dist everything needed for win32 builds.
Original commit message from CVS: * configure.ac: * sys/Makefile.am: * sys/directdraw/Makefile.am: * sys/directsound/Makefile.am: * sys/waveform/Makefile.am: Make sure to dist everything needed for win32 builds.
Diffstat (limited to 'sys/waveform')
-rw-r--r--sys/waveform/Makefile.am16
1 files changed, 16 insertions, 0 deletions
diff --git a/sys/waveform/Makefile.am b/sys/waveform/Makefile.am
new file mode 100644
index 00000000..456e91f8
--- /dev/null
+++ b/sys/waveform/Makefile.am
@@ -0,0 +1,16 @@
+plugin_LTLIBRARIES = libgstwaveformsink.la
+
+# FIXME: Replace DIRECTSOUND CFLAGS+LIBS with waveform related ones and fix
+# the configure.ac + sys/Makefile.am to get this stuff building in MingW
+# For now, it's just disted for use in the VS builds.
+
+libgstwaveformsink_la_SOURCES = gstwaveformsink.c gstwaveformplugin.c
+libgstwaveformsink_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
+ $(GST_PLUGINS_BASE_CFLAGS) $(DIRECTSOUND_CFLAGS)
+libgstwaveformsink_la_LIBADD = $(DIRECTSOUND_LIBS) \
+ $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) \
+ -lgstaudio-$(GST_MAJORMINOR) -lgstinterfaces-$(GST_MAJORMINOR)
+libgstwaveformsink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(DIRECTSOUND_LDFLAGS)
+
+noinst_HEADERS = gstwaveformsink.h
+