source: plugins/puredata/Makefile.am @ 6ff2870

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 6ff2870 was 6ff2870, checked in by Paul Brossier <piem@altern.org>, 18 years ago

use top_{build,src}dir instead of ../
use top_{build,src}dir instead of ../

  • Property mode set to 100644
File size: 1.2 KB
RevLine 
[30cbd419]1## Process this file with automake to produce Makefile.in. -*-Makefile-*-
2# inspired from Guenter Geiger's Makefile.am for plugin
3# pure-data/externals/plugin~/Makefile.am -- rev 1.1
4
5SUFFIXES = .pd_linux
6PDDIR = $(prefix)/lib/pd
7pddir = $(PDDIR)
8#SUBDIRS = ladspa vst win
9
10## Make and install the shared library.
[77494e7]11pdinstalldir = $(pddir)/extra
[0eb4025]12pdinstallrefdir = $(pddir)/doc/5.reference
13pdinstallexpdir = $(pddir)/doc/aubio
[30cbd419]14
15# Automake won't accept something ending in ".pd_linux" as a library
[cf83555]16pdinstall_PROGRAMS = aubio.pd_linux
17
18aubio_pd_linux_SOURCES = \
19        aubio_setup.c \
20        aubioonset~.c \
21        aubiotempo~.c \
22        aubiotss~.c \
[660c1d82]23        aubioquiet~.c \
24        aubiopitch~.c
[30cbd419]25
26pdincludedir = $(pddir)/src
27
[735c4c4]28LIBTOOL=$(SHELL) $(srcdir)/libtoolkludge
[30cbd419]29
[c9b33bb]30INCLUDES = -I$(top_srcdir)/src -I$(pdincludedir)
[30cbd419]31
[c9b33bb]32AM_CFLAGS  = -DPD -fPIC -DPIC
[6ff2870]33AM_LDFLAGS = -L$(top_builddir)/src/.libs -laubio -export_dynamic -shared
[30cbd419]34
35## Install the documentation.
36
[0eb4025]37pdinstallref_DATA = \
[08d21bf]38        help/aubioonset~-help.pd \
39        help/aubioquiet~-help.pd \
40        help/aubiotempo~-help.pd \
41        help/aubiotss~-help.pd \
42        help/aubiopitch~-help.pd
[30cbd419]43
[0eb4025]44pdinstallexp_DATA = \
45        examples/onset-cam.pd
[30cbd419]46
47## My kludge
48noinst_SCRIPTS = libtoolkludge
49
[acf2ec07]50EXTRA_DIST = $(pdinstallref_DATA) $(pdinstallexp_DATA) $(noinst_SCRIPTS)
[dba3b1a]51
Note: See TracBrowser for help on using the repository browser.