diff options
author | Reinhard Nißl <rnissl@gmx.de> | 2007-04-10 23:11:47 +0200 |
---|---|---|
committer | Reinhard Nißl <rnissl@gmx.de> | 2007-04-10 23:11:47 +0200 |
commit | 36579aba10852b0167c9e329bb4d10776844531d (patch) | |
tree | 711e10e1a77892ce94c60c1ce5228b331ef19f93 /src/vdr/Makefile.am | |
parent | c552e457732c3c7b84b66ed8548713be52561487 (diff) | |
download | xine-lib-vdr-xine-version-711.tar.gz xine-lib-vdr-xine-version-711.tar.bz2 |
Initial import of VDR plugins.vdr-xine-version-711
Diffstat (limited to 'src/vdr/Makefile.am')
-rw-r--r-- | src/vdr/Makefile.am | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/vdr/Makefile.am b/src/vdr/Makefile.am new file mode 100644 index 000000000..021bb5460 --- /dev/null +++ b/src/vdr/Makefile.am @@ -0,0 +1,30 @@ +include $(top_srcdir)/misc/Makefile.common + + + +libdir = $(XINE_PLUGINDIR) + +AM_CFLAGS = -D_LARGEFILE64_SOURCE + +lib_LTLIBRARIES = \ + xineplug_inp_vdr.la + +xineplug_inp_vdr_la_SOURCES = input_vdr.c +xineplug_inp_vdr_la_LIBADD = $(XINE_LIB) +xineplug_inp_vdr_la_LDFLAGS = -avoid-version -module @IMPURE_TEXT_LDFLAGS@ + +include_HEADERS = input_vdr.h + + + +postlibdir = $(XINE_PLUGINDIR)/post + +postlib_LTLIBRARIES = \ + xineplug_post_vdr.la + +xineplug_post_vdr_la_SOURCES = post_vdr.c post_vdr_video.c post_vdr_audio.c +xineplug_post_vdr_la_LIBADD = $(XINE_LIB) +xineplug_post_vdr_la_LDFLAGS = -avoid-version -module @IMPURE_TEXT_LDFLAGS@ + +noinst_HEADERS = post_vdr.h + |