diff options
author | Luca Ognibene <skaboy@users.sourceforge.net> | 2003-02-26 18:26:40 +0000 |
---|---|---|
committer | Luca Ognibene <skaboy@users.sourceforge.net> | 2003-02-26 18:26:40 +0000 |
commit | 89414294fe780b7aeb829235bc0c07421b04bdb1 (patch) | |
tree | 23c1bec086b46b1aee80e0402e0bb07a0ee89274 /src/post/mosaico/Makefile.am | |
parent | 2a5db04fc3570292d6cbbaf657cb093bff8d9e5f (diff) | |
download | xine-lib-89414294fe780b7aeb829235bc0c07421b04bdb1.tar.gz xine-lib-89414294fe780b7aeb829235bc0c07421b04bdb1.tar.bz2 |
my first commit, mosaico is in cvs
CVS patchset: 4288
CVS date: 2003/02/26 18:26:40
Diffstat (limited to 'src/post/mosaico/Makefile.am')
-rw-r--r-- | src/post/mosaico/Makefile.am | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/post/mosaico/Makefile.am b/src/post/mosaico/Makefile.am new file mode 100644 index 000000000..fbfa85604 --- /dev/null +++ b/src/post/mosaico/Makefile.am @@ -0,0 +1,30 @@ +## +## Process this file with automake to produce Makefile.in +## + +AM_CFLAGS = @ANSI_FLAGS@ +DEBUG_CFLAGS = @DEBUG_CFLAGS@ @ANSI_FLAGS@ + +LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic + +libdir = $(XINE_PLUGINDIR)/post + +lib_LTLIBRARIES = xineplug_post_mosaico.la + +xineplug_post_mosaico_la_SOURCES = mosaico.c +xineplug_post_mosaico_la_LIBADD = $(XINE_LIB) +xineplug_post_mosaico_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ + +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 |