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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 411 - (hide annotations) (download)
Sat Feb 26 02:01:14 2005 UTC (19 years, 1 month 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 schoenebeck 9 # set the include path found by configure
2     INCLUDES= $(all_includes)
3    
4 schoenebeck 80 AM_CXXFLAGS = -ffast-math -march=$(target_cpu) -mcpu=$(target_cpu)
5 schoenebeck 9
6 schoenebeck 202 SUBDIRS = network engines common lib testcases drivers
7 schoenebeck 53
8     pkglib_LTLIBRARIES = liblinuxsampler.la
9     liblinuxsampler_la_SOURCES = Sampler.cpp Sampler.h
10 schoenebeck 411 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 schoenebeck 202 liblinuxsampler_la_LDFLAGS = -module
17 schoenebeck 53
18     bin_PROGRAMS = linuxsampler
19     linuxsampler_SOURCES = linuxsampler.cpp
20 schoenebeck 57 linuxsampler_LDADD = $(top_builddir)/src/liblinuxsampler.la

  ViewVC Help
Powered by ViewVC