diff options
| author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-10-13 11:47:11 +0000 |
|---|---|---|
| committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-10-13 11:47:11 +0000 |
| commit | bf6b1747ae4bad46dbbf5fa2189a18b45c1d6b38 (patch) | |
| tree | 60ac612a5a60675173b00d73bf9aefc3b5085e34 /src/input/vcd/Makefile.am | |
| parent | ee3b51f5df1a50e02d43d7cf81fbef19f61aa942 (diff) | |
| download | xine-lib-bf6b1747ae4bad46dbbf5fa2189a18b45c1d6b38.tar.gz xine-lib-bf6b1747ae4bad46dbbf5fa2189a18b45c1d6b38.tar.bz2 | |
Add vcdx plugin(CVS) and dependent libs(no CVS, broken API).
Ability to use external libs (--with-external-vcdnav), disable
vcdx build and build old vcd instead (--disable-vcdx).
This last feature is useful since vcdx take /hours/ to start
playback, that can help people who don't want vcd navigation.
Remove all .la files, even in subdirs (eg: post)
CVS patchset: 5505
CVS date: 2003/10/13 11:47:11
Diffstat (limited to 'src/input/vcd/Makefile.am')
| -rw-r--r-- | src/input/vcd/Makefile.am | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/input/vcd/Makefile.am b/src/input/vcd/Makefile.am new file mode 100644 index 000000000..027c9621f --- /dev/null +++ b/src/input/vcd/Makefile.am @@ -0,0 +1,47 @@ +SUBDIRS = libcdio libvcd + +libdir = $(XINE_PLUGINDIR) + +LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic +XINE_LIB = $(top_builddir)/src/xine-engine/libxine.la + +vcdx_SRCS = xineplug_inp_vcd.c vcdplayer.c vcdio.c xine-extra.c + +EXTRA_DIST = $(vcdx_SRCS) + +if ENABLE_VCDX +lib_LTLIBRARIES = xineplug_inp_vcdx.la + +AM_CFLAGS = $(LIBCDIO_CFLAGS) $(LIBVCD_CFLAGS) + +xineplug_inp_vcdx_la_SOURCES = $(vcdx_SRCS) +xineplug_inp_vcdx_la_LDFLAGS = -avoid-version -module +if HAVE_VCDNAV +xineplug_inp_vcdx_la_LIBADD = $(XINE_LIB) $(LIBVCDINFO_LIBS) +else +xineplug_inp_vcdx_la_LIBADD = $(XINE_LIB) $(LIBVCD_LIBS) $(LIBVCDINFO_LIBS) +endif + +endif + +noinst_HEADERS = vcdio.h vcdplayer.h xine-extra.h + +debug: + @list='$(SUBDIRS)'; for subdir in $$list; do \ + (cd $$subdir && $(MAKE) $@) || exit;\ + done; + @$(MAKE) CFLAGS="$(DEBUG_CFLAGS) $(LIBCDIO_CFLAGS) $(LIBVCD_CFLAGS)" + +install-debug: debug + @list='$(SUBDIRS)'; for subdir in $$list; do \ + (cd $$subdir && $(MAKE) $@) || exit;\ + done; + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +mostlyclean-generic: + -rm -f *~ \#* .*~ .\#* + +maintainer-clean-generic: + -@echo "This command is intended for maintainers to use;" + -@echo "it deletes files that may require special tools to rebuild." + -rm -f Makefile.in |
