diff options
author | Sébastien Moutte <sebastien@moutte.net> | 2008-02-12 22:10:39 +0000 |
---|---|---|
committer | Sébastien Moutte <sebastien@moutte.net> | 2008-02-12 22:10:39 +0000 |
commit | 104ec747dfe785e9f1b4883a3999410a3a6f44ed (patch) | |
tree | 30330da90b3e2d6d40196a248be206efa8ba2f5e /sys | |
parent | 6c1278d35c97a5be11f35dcb812a1c7f303f1ebe (diff) | |
download | gst-plugins-bad-104ec747dfe785e9f1b4883a3999410a3a6f44ed.tar.gz gst-plugins-bad-104ec747dfe785e9f1b4883a3999410a3a6f44ed.tar.bz2 gst-plugins-bad-104ec747dfe785e9f1b4883a3999410a3a6f44ed.zip |
Add Makefiles to win32 plugins and lib.
Original commit message from CVS:
* gst-libs/gst/dshow/Makefile.am:
* sys/dshowdecwrapper/Makefile.am:
* sys/dshowsrcwrapper/Makefile.am:
Add Makefiles to win32 plugins and lib.
They will need to be tested and probably fixed by developers
working with mingw. This is a first step to include source files
with releases.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dshowdecwrapper/Makefile.am | 9 | ||||
-rw-r--r-- | sys/dshowsrcwrapper/Makefile.am | 9 |
2 files changed, 18 insertions, 0 deletions
diff --git a/sys/dshowdecwrapper/Makefile.am b/sys/dshowdecwrapper/Makefile.am new file mode 100644 index 00000000..3b03a40d --- /dev/null +++ b/sys/dshowdecwrapper/Makefile.am @@ -0,0 +1,9 @@ +plugin_LTLIBRARIES = libgstdshowdecwrapper.la + +libgstdshowdecwrapper_la_SOURCES = gstdshowaudiodec.c gstdshowdecwrapper.c gstdshowvideodec.c + +libgstdshowdecwrapper_la_CFLAGS = $(GST_CFLAGS) +libgstdshowdecwrapper_la_LIBADD = $(GST_LIBS) +libgstdshowdecwrapper_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) + +noinst_HEADERS = gstdshowaudiodec.h gstdshowdecwrapper.h gstdshowvideodec.h diff --git a/sys/dshowsrcwrapper/Makefile.am b/sys/dshowsrcwrapper/Makefile.am new file mode 100644 index 00000000..1a1187c6 --- /dev/null +++ b/sys/dshowsrcwrapper/Makefile.am @@ -0,0 +1,9 @@ +plugin_LTLIBRARIES = libgstdshowsrcwrapper.la + +libgstdshowsrcwrapper_la_SOURCES = gstdshowaudiosrc.c gstdshowsrcwrapper.c gstdshowvideosrc.c + +libgstdshowsrcwrapper_la_CFLAGS = $(GST_CFLAGS) +libgstdshowsrcwrapper_la_LIBADD = $(GST_LIBS) +libgstdshowsrcwrapper_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) + +noinst_HEADERS = gstdshowaudiosrc.h gstdshowsrcwrapper.h gstdshowvideosrc.h |