diff options
| author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-09-12 19:50:41 +0000 |
|---|---|---|
| committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-09-12 19:50:41 +0000 |
| commit | 131676c0f80f073a2f6cd9d4660fe58affb55f46 (patch) | |
| tree | 5a9f44803dc7e5361f0aa5e72e5b927fb11f5577 /src/libvfill/Makefile.am | |
| parent | 351db40c64b02835f48bb299295c49deac775997 (diff) | |
| download | xine-lib-131676c0f80f073a2f6cd9d4660fe58affb55f46.tar.gz xine-lib-131676c0f80f073a2f6cd9d4660fe58affb55f46.tar.bz2 | |
adding still picture support (needed to implement menus) based on Rich's work
CVS patchset: 625
CVS date: 2001/09/12 19:50:41
Diffstat (limited to 'src/libvfill/Makefile.am')
| -rw-r--r-- | src/libvfill/Makefile.am | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/libvfill/Makefile.am b/src/libvfill/Makefile.am new file mode 100644 index 000000000..4548b4c72 --- /dev/null +++ b/src/libvfill/Makefile.am @@ -0,0 +1,29 @@ +# +# the videofill plugin +# + +CFLAGS = @GLOBAL_CFLAGS@ +DEBUG_CFLAGS = @DEBUG_CFLAGS@ + +libdir = $(XINE_PLUGINDIR) + +lib_LTLIBRARIES = xineplug_decode_vfill.la + +xineplug_decode_vfill_la_SOURCES = xine_decoder.c +xineplug_decode_vfill_la_LDFLAGS = -avoid-version -module + +# noinst_HEADERS = + +debug: + @$(MAKE) CFLAGS="$(DEBUG_CFLAGS)" + +install-debug: debug + @$(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 |
