source: plugins/puredata/Makefile.am @ 091b171

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

rewrite of the puredata external
rewrite of the puredata external

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