Changeset be929a5 for plugins/puredata
- Timestamp:
- Sep 29, 2006, 4:18:53 PM (18 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 237f632
- Parents:
- 5a405dd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/puredata/Makefile.am
r5a405dd rbe929a5 6 6 PDDIR = $(prefix)/lib/pd 7 7 pddir = $(PDDIR) 8 #SUBDIRS = ladspa vst win9 8 10 9 ## Make and install the shared library. … … 13 12 pdinstallexpdir = $(pddir)/doc/aubio 14 13 15 # Automake won't accept something ending in ".pd_linux" as a library 16 pdinstall_PROGRAMS = aubio.pd_linux 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 17 23 18 aubio_pd_linux_SOURCES = \ 24 pdinstall_PROGRAMS = $(PDEXT) 25 26 ALLSOURCES = \ 19 27 aubio_setup.c \ 20 28 aubioonset~.c \ … … 24 32 aubiopitch~.c 25 33 34 aubio_pd_linux_SOURCES = $(ALLSOURCES) 35 aubio_pd_darwin_SOURCES = $(ALLSOURCES) 36 aubio_dll_SOURCES = $(ALLSOURCES) 37 26 38 pdincludedir = $(pddir)/src 27 39 28 LIBTOOL=$(SHELL) $(srcdir)/libtoolkludge 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 43 else 44 if DARWIN 45 AM_LDFLAGS = -L$(top_builddir)/src/.libs -laubio -export_dynamic -shared 46 else 47 AM_LDFLAGS = -L$(top_builddir)/src/.libs -laubio -export_dynamic -shared 48 endif 49 endif 29 50 30 INCLUDES = -I$(top_srcdir)/src -I$(pdincludedir)31 32 AM_CFLAGS = -DPD -fPIC -DPIC33 AM_LDFLAGS = -L$(top_builddir)/src/.libs -laubio -export_dynamic -shared34 51 35 52 ## Install the documentation. … … 45 62 examples/onset-cam.pd 46 63 47 ## My kludge 48 noinst_SCRIPTS = libtoolkludge 49 50 EXTRA_DIST = $(pdinstallref_DATA) $(pdinstallexp_DATA) $(noinst_SCRIPTS) 51 64 EXTRA_DIST = $(pdinstallref_DATA) $(pdinstallexp_DATA)
Note: See TracChangeset
for help on using the changeset viewer.