/[svn]/linuxsampler/trunk/src/Makefile.am
ViewVC logotype

Annotation of /linuxsampler/trunk/src/Makefile.am

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1557 - (hide annotations) (download)
Thu Dec 6 02:06:59 2007 UTC (16 years, 3 months ago) by senoner
File size: 1443 byte(s)
* added  -no-undefined in liblinuxsampler:la_LDFLAGS in src/Makefile
in order to avoid the lib getting built as static as opposed to dynamic
(happens in case of unresolved symbols).

1 schoenebeck 9 # set the include path found by configure
2     INCLUDES= $(all_includes)
3    
4 wylder 820 if HAVE_COREMIDI
5     coremidi_ldflags = -framework CoreAudio \
6     -framework CoreMIDI \
7     -framework CoreServices \
8     -framework AudioUnit
9     else
10     coremidi_ldflags =
11     endif
12    
13 schoenebeck 510 AM_CXXFLAGS = -Wreturn-type -ffast-math $(CXX_CPU_SWITCH)
14 schoenebeck 9
15 schoenebeck 1375 SUBDIRS = db network engines common testcases drivers plugins
16 schoenebeck 53
17 schoenebeck 885 liblinuxsamplerincludedir = $(includedir)/linuxsampler
18 schoenebeck 1212 liblinuxsamplerinclude_HEADERS = Sampler.h EventListeners.h
19 schoenebeck 697
20 schoenebeck 53 pkglib_LTLIBRARIES = liblinuxsampler.la
21 schoenebeck 697 liblinuxsampler_la_SOURCES = Sampler.cpp
22 schoenebeck 411 liblinuxsampler_la_LIBADD = \
23 iliev 1161 $(top_builddir)/src/db/liblinuxsamplerdb.la \
24 schoenebeck 504 $(top_builddir)/src/network/liblinuxsamplernetwork.la \
25     $(top_builddir)/src/engines/gig/liblinuxsamplergigengine.la \
26     $(top_builddir)/src/engines/common/liblinuxsamplercommonengine.la \
27     $(top_builddir)/src/engines/liblinuxsamplerengines.la \
28     $(top_builddir)/src/drivers/liblinuxsamplerdrivers.la \
29     $(top_builddir)/src/drivers/audio/liblinuxsampleraudiodriver.la \
30     $(top_builddir)/src/drivers/midi/liblinuxsamplermididriver.la \
31 schoenebeck 1375 $(top_builddir)/src/plugins/liblinuxsamplerplugins.la \
32 schoenebeck 411 $(top_builddir)/src/common/liblinuxsamplercommon.la
33 senoner 1557 liblinuxsampler_la_LDFLAGS = -version-info @SHARED_VERSION_INFO@ @SHLIB_VERSION_ARG@ -no-undefined
34 schoenebeck 53
35     bin_PROGRAMS = linuxsampler
36     linuxsampler_SOURCES = linuxsampler.cpp
37 schoenebeck 57 linuxsampler_LDADD = $(top_builddir)/src/liblinuxsampler.la
38 schoenebeck 1212 linuxsampler_LDFLAGS = $(coremidi_ldflags)

  ViewVC Help
Powered by ViewVC