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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1321 - (hide annotations) (download)
Tue Sep 4 01:12:49 2007 UTC (16 years, 6 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 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 1321 SUBDIRS = db network engines common testcases drivers
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 411 $(top_builddir)/src/common/liblinuxsamplercommon.la
32 schoenebeck 697 liblinuxsampler_la_LDFLAGS = -version-info @SHARED_VERSION_INFO@ @SHLIB_VERSION_ARG@
33 schoenebeck 53
34     bin_PROGRAMS = linuxsampler
35     linuxsampler_SOURCES = linuxsampler.cpp
36 schoenebeck 57 linuxsampler_LDADD = $(top_builddir)/src/liblinuxsampler.la
37 schoenebeck 1212 linuxsampler_LDFLAGS = $(coremidi_ldflags)

  ViewVC Help
Powered by ViewVC