source: plugins/puredata/Makefile.am @ ada5baf

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

add help and doc to EXTRA_DIST
add help and doc to EXTRA_DIST

  • Property mode set to 100644
File size: 1.3 KB
Line 
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.
11pdinstalldir = $(pddir)/extra
12pdinstallrefdir = $(pddir)/doc/5.reference
13pdinstallexpdir = $(pddir)/doc/aubio
14
15# Automake won't accept something ending in ".pd_linux" as a library
16pdinstall_PROGRAMS = aubio.pd_linux
17
18aubio_pd_linux_SOURCES = \
19        aubio_setup.c \
20        aubioonset~.c \
21        aubiotempo~.c \
22        aubiotss~.c \
23        aubioquiet~.c
24
25pdincludedir = $(pddir)/src
26
27LIBTOOL=$(SHELL) $(srcdir)/libtoolkludge
28
29INCLUDES = -I$(top_srcdir) -I$(pdincludedir)
30
31AM_CFLAGS = -I$(srcdir)/../../src \
32    -DPD -O2 -funroll-loops -fomit-frame-pointer \
33    -Wall -W -Wshadow -Wstrict-prototypes -Werror \
34    -Wno-unused -Wno-parentheses -Wno-switch
35AM_LDFLAGS = -L../../src/.libs -laubio -export_dynamic -shared
36
37## Install the documentation.
38
39pdinstallref_DATA = \
40        help/help-aubioonset~.pd \
41        help/help-aubioquiet~.pd \
42        help/help-aubiotempo~.pd \
43        help/help-aubiotss~.pd
44
45pdinstallexp_DATA = \
46        examples/onset-cam.pd
47
48## My kludge
49noinst_SCRIPTS = libtoolkludge
50
51EXTRA_DIST = $(pdinstallref_DATA) $(pdinstallexp_DATA) $(noinst_SCRIPTS)
52
Note: See TracBrowser for help on using the repository browser.