feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change
on this file since 1899f0d was
53efdb3,
checked in by Paul Brossier <piem@altern.org>, 18 years ago
|
link to pd.dll on windows
link to pd.dll on windows
|
-
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 | |
---|
5 | SUFFIXES = .pd_linux |
---|
6 | PDDIR = $(prefix)/lib/pd |
---|
7 | pddir = $(PDDIR) |
---|
8 | |
---|
9 | ## Make and install the shared library. |
---|
10 | pdinstalldir = $(pddir)/extra |
---|
11 | pdinstallrefdir = $(pddir)/doc/5.reference |
---|
12 | pdinstallexpdir = $(pddir)/doc/aubio |
---|
13 | |
---|
14 | if MINGW |
---|
15 | PDEXT = aubio.dll |
---|
16 | else |
---|
17 | if DARWIN |
---|
18 | PDEXT = aubio.pd_darwin |
---|
19 | else |
---|
20 | PDEXT = aubio.pd_linux |
---|
21 | endif |
---|
22 | endif |
---|
23 | |
---|
24 | pdinstall_PROGRAMS = $(PDEXT) |
---|
25 | |
---|
26 | ALLSOURCES = \ |
---|
27 | aubio_setup.c \ |
---|
28 | aubioonset~.c \ |
---|
29 | aubiotempo~.c \ |
---|
30 | aubiotss~.c \ |
---|
31 | aubioquiet~.c \ |
---|
32 | aubiopitch~.c |
---|
33 | |
---|
34 | aubio_pd_linux_SOURCES = $(ALLSOURCES) |
---|
35 | aubio_pd_darwin_SOURCES = $(ALLSOURCES) |
---|
36 | aubio_dll_SOURCES = $(ALLSOURCES) |
---|
37 | |
---|
38 | pdincludedir = $(pddir)/src |
---|
39 | |
---|
40 | AM_CFLAGS = -I$(top_srcdir)/src -I$(pdincludedir) -DPD -fPIC -DPIC @AUBIO_CFLAGS@ |
---|
41 | if MINGW |
---|
42 | AM_LDFLAGS = -L$(top_builddir)/src/.libs -laubio -export_dynamic -shared -lpd |
---|
43 | else |
---|
44 | if DARWIN |
---|
45 | AM_LDFLAGS = -L$(top_builddir)/src/.libs -laubio -bundle -undefined suppress -flat_namespace |
---|
46 | else |
---|
47 | AM_LDFLAGS = -L$(top_builddir)/src/.libs -laubio -export_dynamic -shared |
---|
48 | endif |
---|
49 | endif |
---|
50 | |
---|
51 | |
---|
52 | ## Install the documentation. |
---|
53 | |
---|
54 | pdinstallref_DATA = \ |
---|
55 | help/aubioonset~-help.pd \ |
---|
56 | help/aubioquiet~-help.pd \ |
---|
57 | help/aubiotempo~-help.pd \ |
---|
58 | help/aubiotss~-help.pd \ |
---|
59 | help/aubiopitch~-help.pd |
---|
60 | |
---|
61 | pdinstallexp_DATA = \ |
---|
62 | examples/onset-cam.pd |
---|
63 | |
---|
64 | EXTRA_DIST = $(pdinstallref_DATA) $(pdinstallexp_DATA) |
---|
Note: See
TracBrowser
for help on using the repository browser.