Changeset 6a52f29 for plugins/puredata
- Timestamp:
- Oct 5, 2006, 2:03:43 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:
- cbea730
- Parents:
- f33fec1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/puredata/Makefile.am
rf33fec1 r6a52f29 3 3 # pure-data/externals/plugin~/Makefile.am -- rev 1.1 4 4 5 SUFFIXES = .pd_linux 6 PDDIR = $(prefix)/lib/pd 7 pddir = $(PDDIR) 5 pddir = $(prefix)/lib/pd 8 6 9 7 ## Make and install the shared library. … … 38 36 pdincludedir = $(pddir)/src 39 37 40 AM_CFLAGS = -I$(top_srcdir)/src -I$(pdincludedir) -DPD -fPIC -DPIC@AUBIO_CFLAGS@38 AM_CFLAGS = -I$(top_srcdir)/src -I$(pdincludedir) -DPD @AUBIO_CFLAGS@ 41 39 if MINGW 42 AM_LDFLAGS = -L$(top_builddir)/src/.libs -laubio -export_dynamic -shared -lpd 40 else 41 AM_CFLAGS += -fPIC -DPIC 42 endif 43 44 AM_LDFLAGS = -L$(top_builddir)/src -laubio 45 if MINGW 46 AM_LDFLAGS += -export_dynamic -shared -lpd 43 47 else 44 48 if DARWIN 45 AM_LDFLAGS = -L$(top_builddir)/src/.libs -laubio-bundle -undefined suppress -flat_namespace49 AM_LDFLAGS += -bundle -undefined suppress -flat_namespace 46 50 else 47 AM_LDFLAGS = -L$(top_builddir)/src/.libs -laubio-export_dynamic -shared51 AM_LDFLAGS += -export_dynamic -shared 48 52 endif 49 53 endif 50 51 54 52 55 ## Install the documentation.
Note: See TracChangeset
for help on using the changeset viewer.