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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 57 - (show annotations) (download)
Sun May 2 17:45:43 2004 UTC (19 years, 10 months ago) by schoenebeck
File size: 900 byte(s)
* src/common/Thread.cpp: method StartThread() now blocks until thread
  actually runs, mlockall() will only be applied for realtime threads
* libtoolized liblinuxsampler
* initiated automatic unit tests against the LinuxSampler codebase
  (see src/testcases): already added a couple of tests for the Thread and
  Mutex classes, you have to explicitly compile the unit tests by running
  'make testcases' (you need to have cppunit installed though) and then you
  can run the console version of the test runner by calling
  'src/testcases/linuxsamplertest'
* src/Sampler.h: added API documentation

1 # set the include path found by configure
2 INCLUDES= $(all_includes)
3
4 # to prevent compile errors on some systems
5 AM_CXXFLAGS = -pedantic
6
7 SUBDIRS = network engines common audiodriver mididriver lib testcases
8
9 pkglib_LTLIBRARIES = liblinuxsampler.la
10 liblinuxsampler_la_SOURCES = Sampler.cpp Sampler.h
11 liblinuxsampler_la_LIBADD = $(top_builddir)/src/network/liblinuxsamplernetwork.la $(top_builddir)/src/mididriver/liblinuxsamplermididriver.la $(top_builddir)/src/lib/fileloader/libgig/libgig.la $(top_builddir)/src/engines/gig/liblinuxsamplergigengine.la $(top_builddir)/src/engines/common/liblinuxsamplercommonengine.la $(top_builddir)/src/common/liblinuxsamplercommon.la $(top_builddir)/src/audiodriver/liblinuxsampleraudiodriver.la
12 liblinuxsampler_la_LDFLAGS = -module
13
14 bin_PROGRAMS = linuxsampler
15 linuxsampler_SOURCES = linuxsampler.cpp
16 linuxsampler_LDADD = $(top_builddir)/src/liblinuxsampler.la

  ViewVC Help
Powered by ViewVC