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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 411 - (show annotations) (download)
Sat Feb 26 02:01:14 2005 UTC (19 years ago) by schoenebeck
File size: 1011 byte(s)
* design change: using now one sampler engine instance and one disk thread
  instance for all sampler channels that are connected to the same audio
  output device (and are using the same engine type of course)
* added EngineFactory / EngineChannelFactory to remove the annoying build
  dependencies e.g. of the lscpserver to the actual sampler engine
  implementations
* bumped version to 0.3.0 (current CVS state is still quite broken,
  previous, stable CVS version was tagged as "v0_2_0" and is also available
  as source tarball)

1 # set the include path found by configure
2 INCLUDES= $(all_includes)
3
4 AM_CXXFLAGS = -ffast-math -march=$(target_cpu) -mcpu=$(target_cpu)
5
6 SUBDIRS = network engines common lib testcases drivers
7
8 pkglib_LTLIBRARIES = liblinuxsampler.la
9 liblinuxsampler_la_SOURCES = Sampler.cpp Sampler.h
10 liblinuxsampler_la_LIBADD = \
11 $(top_builddir)/src/network/liblinuxsamplernetwork.la $(top_builddir)/src/lib/fileloader/libgig/libgig.la \
12 $(top_builddir)/src/engines/gig/liblinuxsamplergigengine.la $(top_builddir)/src/engines/common/liblinuxsamplercommonengine.la \
13 $(top_builddir)/src/engines/liblinuxsamplerengines.la $(top_builddir)/src/drivers/liblinuxsamplerdrivers.la \
14 $(top_builddir)/src/drivers/audio/liblinuxsampleraudiodriver.la $(top_builddir)/src/drivers/midi/liblinuxsamplermididriver.la \
15 $(top_builddir)/src/common/liblinuxsamplercommon.la
16 liblinuxsampler_la_LDFLAGS = -module
17
18 bin_PROGRAMS = linuxsampler
19 linuxsampler_SOURCES = linuxsampler.cpp
20 linuxsampler_LDADD = $(top_builddir)/src/liblinuxsampler.la

  ViewVC Help
Powered by ViewVC