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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 80 - (hide annotations) (download)
Sun May 23 19:16:33 2004 UTC (20 years ago) by schoenebeck
File size: 540 byte(s)
* biquad filter parameters are now calculated outside the interpolate
  loop for better performance
* couple of loop unroll optimizations
* filter is now enabled by default
* cubic interpolation is now enabled by default
* reduced debug level to 1 to lower verbosity
* raised default limit for voices to 128
* raised default limit for streams to 150
* added some compiler optimization flags (-ffast-math -march -mcpu)

1 schoenebeck 53 INCLUDES = $(all_includes)
2     METASOURCES = AUTO
3    
4 schoenebeck 80 AM_CXXFLAGS = -ffast-math -march=$(target_cpu) -mcpu=$(target_cpu)
5    
6 schoenebeck 57 noinst_LTLIBRARIES = liblinuxsampleraudiodriver.la
7     liblinuxsampleraudiodriver_la_SOURCES = AudioChannel.cpp AudioChannel.h AudioOutputDevice.cpp AudioOutputDevice.h AudioOutputDeviceAlsa.cpp AudioOutputDeviceAlsa.h AudioOutputDeviceJack.cpp AudioOutputDeviceJack.h
8     liblinuxsampleraudiodriver_la_LDFLAGS = $(JACK_LIBS)
9 senkov 67 #liblinuxsampleraudiodriver_la_DEPENDENCIES = $(JACK_LIBS)
10 schoenebeck 57 liblinuxsampleraudiodriver_la_LIBADD = -lasound

  ViewVC Help
Powered by ViewVC