diff options
author | Jamie Bullock <jamie@postlude.co.uk> | 2006-10-05 16:48:38 +0000 |
---|---|---|
committer | Jamie Bullock <jamie@postlude.co.uk> | 2006-10-05 16:48:38 +0000 |
commit | e1fbfa44ce1fd63e7c4a03b5e07c24fcc125825b (patch) | |
tree | b87429ff14b3506abbb7362eb36ea587327a06ca /examples/puredata/Makefile.am | |
parent | 2fb8e11d1e4511e7f044a1f69eda0384abd06da5 (diff) | |
download | LibXtract-e1fbfa44ce1fd63e7c4a03b5e07c24fcc125825b.tar.gz LibXtract-e1fbfa44ce1fd63e7c4a03b5e07c24fcc125825b.tar.bz2 LibXtract-e1fbfa44ce1fd63e7c4a03b5e07c24fcc125825b.zip |
Added Pure Data example
Diffstat (limited to 'examples/puredata/Makefile.am')
-rw-r--r-- | examples/puredata/Makefile.am | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/examples/puredata/Makefile.am b/examples/puredata/Makefile.am new file mode 100644 index 0000000..3666682 --- /dev/null +++ b/examples/puredata/Makefile.am @@ -0,0 +1,48 @@ + +SUFFIXES = .pd_linux +PDDIR = $(prefix)/lib/pd +pddir = $(PDDIR) + +## Make and install the shared library. +pdinstalldir = $(pddir)/extra +pdinstallrefdir = $(pddir)/doc/5.reference +pdinstallexpdir = $(pddir)/doc/xtract + +# Automake won't accept something ending in ".pd_linux" as a library +pdinstall_PROGRAMS = xtract~.pd_linux + +if BUILD_PD_EXAMPLE +xtract_pd_linux_SOURCES = xtract~.c +else +xtract_pd_linux_SOURCES = +endif + +pdincludedir = $(pddir)/src + +#LIBTOOL=$(SHELL) $(srcdir)/libtoolkludge + +INCLUDES = -I$(top_srcdir)/src -I$(pdincludedir) + +#AM_CFLAGS = -DPD -fPIC -DPIC +#AM_LDFLAGS = -L$(top_builddir)/src/.libs -lxtract -export_dynamic -shared + +AM_CFLAGS = @PD_CFLAGS@ +AM_LDFLAGS = @PD_LDFLAGS@ -lxtract + +## Install the documentation. + +#pdinstallref_DATA = \ +# help/aubioonset-help.pd \ +# help/aubioquiet-help.pd \ +# help/aubiotempo-help.pd \ +# help/aubiotss-help.pd \ +# help/aubiopitch-help.pd +# +#pdinstallexp_DATA = \ +# examples/onset-cam.pd +# +### My kludge +#noinst_SCRIPTS = libtoolkludge +# +#EXTRA_DIST = $(pdinstallref_DATA) $(pdinstallexp_DATA) $(noinst_SCRIPTS) + |