source: plugins/puredata/Makefile.am @ 08d21bf

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

move pd help to pattern-help.pd
move pd help to pattern-help.pd

  • Property mode set to 100644
File size: 1.4 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        aubiopitch~.c
25
26pdincludedir = $(pddir)/src
27
28LIBTOOL=$(SHELL) $(srcdir)/libtoolkludge
29
30INCLUDES = -I$(top_srcdir) -I$(pdincludedir)
31
32AM_CFLAGS = -I$(srcdir)/../../src \
33    -DPD -O2 -fPIC -funroll-loops -fomit-frame-pointer \
34    -Wall -W -Wshadow -Wstrict-prototypes -Werror \
35    -Wno-unused -Wno-parentheses -Wno-switch
36AM_LDFLAGS = -L../../src/.libs -laubio -export_dynamic -shared
37
38## Install the documentation.
39
40pdinstallref_DATA = \
41        help/aubioonset~-help.pd \
42        help/aubioquiet~-help.pd \
43        help/aubiotempo~-help.pd \
44        help/aubiotss~-help.pd \
45        help/aubiopitch~-help.pd
46
47pdinstallexp_DATA = \
48        examples/onset-cam.pd
49
50## My kludge
51noinst_SCRIPTS = libtoolkludge
52
53EXTRA_DIST = $(pdinstallref_DATA) $(pdinstallexp_DATA) $(noinst_SCRIPTS)
54
Note: See TracBrowser for help on using the repository browser.