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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 12 - (hide annotations) (download)
Sun Nov 16 19:01:50 2003 UTC (20 years, 4 months ago) by schoenebeck
File size: 642 byte(s)
* src/gig.cpp: fixed bug in decompression algorithm which caused it not to
  detect the end of a stream and let the disk streams reload forever also
  resulting in strange sounds at the end of disk voices (concerned only
  playback of compressed gig files)
* src/audiothread.cpp: deallocation of voices when they reached the end of
  playback (thus e.g. when sustain pedal is pressed and a disk stream
  reached it's end)
* various endian corrections needed for non intel systems
* introduced debug level, you can set the debug level and thus the
  verbosity of LinuxSampler in src/global.h

1 schoenebeck 9 bin_PROGRAMS = linuxsampler
2 schoenebeck 12 linuxsampler_SOURCES = linuxsampler.cpp audioio.cpp audioio.h audiothread.cpp audiothread.h diskthread.cpp diskthread.h global.cpp global.h midiin.cpp midiin.h ringbuffer.h stream.cpp stream.h thread.cpp thread.h voice.cpp voice.h rtelmemorypool.h
3 schoenebeck 9
4     # set the include path found by configure
5     INCLUDES= $(all_includes)
6    
7     # to prevent compile errors on some systems
8     AM_CXXFLAGS = -pedantic
9    
10     # the library search path.
11     linuxsampler_LDFLAGS = $(all_libraries)
12     lib_LIBRARIES = libgig.a
13     libgig_a_SOURCES = DLS.cpp DLS.h gig.cpp gig.h RIFF.cpp RIFF.h
14     linuxsampler_LDADD = $(top_builddir)/src/libgig.a -lpthread -lasound

  ViewVC Help
Powered by ViewVC