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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1321 - (show annotations) (download)
Tue Sep 4 01:12:49 2007 UTC (16 years, 7 months ago) by schoenebeck
File size: 1364 byte(s)
* added highly experimental code for synchronizing instrument editors
  hosted in the sampler's process to safely edit instruments while playing
  without a crash (hopefully) by either suspending single regions wherever
  possible or - if unavoidable - whole engine(s)
* disk thread: queue sizes are now proportional to CONFIG_MAX_STREAMS
  instead of fix values
* removed legacy Makefiles in meanwhile deleted src/lib directory and its
  subdirectories
* bumped version to 0.4.0.7cvs

1 # set the include path found by configure
2 INCLUDES= $(all_includes)
3
4 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 AM_CXXFLAGS = -Wreturn-type -ffast-math $(CXX_CPU_SWITCH)
14
15 SUBDIRS = db network engines common testcases drivers
16
17 liblinuxsamplerincludedir = $(includedir)/linuxsampler
18 liblinuxsamplerinclude_HEADERS = Sampler.h EventListeners.h
19
20 pkglib_LTLIBRARIES = liblinuxsampler.la
21 liblinuxsampler_la_SOURCES = Sampler.cpp
22 liblinuxsampler_la_LIBADD = \
23 $(top_builddir)/src/db/liblinuxsamplerdb.la \
24 $(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 $(top_builddir)/src/common/liblinuxsamplercommon.la
32 liblinuxsampler_la_LDFLAGS = -version-info @SHARED_VERSION_INFO@ @SHLIB_VERSION_ARG@
33
34 bin_PROGRAMS = linuxsampler
35 linuxsampler_SOURCES = linuxsampler.cpp
36 linuxsampler_LDADD = $(top_builddir)/src/liblinuxsampler.la
37 linuxsampler_LDFLAGS = $(coremidi_ldflags)

  ViewVC Help
Powered by ViewVC