Changeset 6a52f29


Ignore:
Timestamp:
Oct 5, 2006, 2:03:43 PM (17 years ago)
Author:
Paul Brossier <piem@altern.org>
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
Message:

improve flags for windows and darwin puredata external
improve flags for windows and darwin puredata external

File:
1 edited

Legend:

Unmodified
Added
Removed
  • plugins/puredata/Makefile.am

    rf33fec1 r6a52f29  
    33# pure-data/externals/plugin~/Makefile.am -- rev 1.1
    44
    5 SUFFIXES = .pd_linux
    6 PDDIR = $(prefix)/lib/pd
    7 pddir = $(PDDIR)
     5pddir = $(prefix)/lib/pd
    86
    97## Make and install the shared library.
     
    3836pdincludedir = $(pddir)/src
    3937
    40 AM_CFLAGS  = -I$(top_srcdir)/src -I$(pdincludedir) -DPD -fPIC -DPIC @AUBIO_CFLAGS@
     38AM_CFLAGS  = -I$(top_srcdir)/src -I$(pdincludedir) -DPD @AUBIO_CFLAGS@
    4139if MINGW
    42 AM_LDFLAGS = -L$(top_builddir)/src/.libs -laubio -export_dynamic -shared -lpd
     40else
     41AM_CFLAGS += -fPIC -DPIC
     42endif
     43
     44AM_LDFLAGS  = -L$(top_builddir)/src -laubio
     45if MINGW
     46AM_LDFLAGS += -export_dynamic -shared -lpd
    4347else
    4448if DARWIN
    45 AM_LDFLAGS = -L$(top_builddir)/src/.libs -laubio -bundle -undefined suppress -flat_namespace
     49AM_LDFLAGS += -bundle -undefined suppress -flat_namespace
    4650else
    47 AM_LDFLAGS = -L$(top_builddir)/src/.libs -laubio -export_dynamic -shared
     51AM_LDFLAGS += -export_dynamic -shared
    4852endif
    4953endif
    50 
    5154
    5255## Install the documentation.
Note: See TracChangeset for help on using the changeset viewer.