summaryrefslogtreecommitdiff
path: root/src/post/visualizations/Makefile.am
diff options
context:
space:
mode:
authorMike Melanson <mike@multimedia.cx>2003-01-04 20:42:47 +0000
committerMike Melanson <mike@multimedia.cx>2003-01-04 20:42:47 +0000
commitca1512a619ca74a03184d6f0c2b98d266539b463 (patch)
treefd79483eb22dbda96f8789e71a2ae3986850d2dd /src/post/visualizations/Makefile.am
parent542a7a8e076e64a8aa4cc34410f401d982b6a8f2 (diff)
downloadxine-lib-ca1512a619ca74a03184d6f0c2b98d266539b463.tar.gz
xine-lib-ca1512a619ca74a03184d6f0c2b98d266539b463.tar.bz2
added a visualizations post plugin directory and an oscilloscope
viz plguin, as well as a reference template viz plugin CVS patchset: 3776 CVS date: 2003/01/04 20:42:47
Diffstat (limited to 'src/post/visualizations/Makefile.am')
-rw-r--r--src/post/visualizations/Makefile.am34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/post/visualizations/Makefile.am b/src/post/visualizations/Makefile.am
new file mode 100644
index 000000000..992430c6d
--- /dev/null
+++ b/src/post/visualizations/Makefile.am
@@ -0,0 +1,34 @@
+##
+## Process this file with automake to produce Makefile.in
+##
+
+EXTRA_DIST = fooviz.c
+
+AM_CFLAGS = @ANSI_FLAGS@
+DEBUG_CFLAGS = @DEBUG_CFLAGS@ @ANSI_FLAGS@
+
+LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic
+
+libdir = $(XINE_PLUGINDIR)/post
+
+lib_LTLIBRARIES = xineplug_post_visualizations.la
+
+xineplug_post_visualizations_la_SOURCES = \
+ visualizations.c oscope.c
+xineplug_post_visualizations_la_LIBADD = $(XINE_LIB)
+xineplug_post_visualizations_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
+