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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 288 - (hide annotations) (download)
Tue Oct 19 00:36:34 2004 UTC (19 years, 6 months ago) by schoenebeck
File size: 743 byte(s)
* configure.in: added check for UNIX98 compatibility, check if there's at
  least one supported MIDI input and audio output system available, added
  conditionals for ALSA and JACK
* src/drivers/audio/Makefile.am: ALSA and JACK drivers are only compiled
  respectively if they're supported by the system
* MidiInputDeviceFactory.cpp, AudioOutputDeviceFactory.cpp: little
  workaround for reported linker problem
* removed autotools generated files from CVS

1 schoenebeck 200 INCLUDES = $(all_includes)
2     METASOURCES = AUTO
3    
4     AM_CXXFLAGS = -ffast-math -march=$(target_cpu) -mcpu=$(target_cpu)
5    
6 schoenebeck 288 if HAVE_ALSA
7     alsa_src = AudioOutputDeviceAlsa.cpp AudioOutputDeviceAlsa.h
8     alsa_ladd = -lasound
9     else
10     alsa_src =
11     alsa_ladd =
12     endif
13    
14     if HAVE_JACK
15     jack_src = AudioOutputDeviceJack.cpp AudioOutputDeviceJack.h
16     jack_lflags = $(JACK_LIBS)
17     else
18     jack_src =
19     jack_lflags =
20     endif
21    
22 schoenebeck 200 noinst_LTLIBRARIES = liblinuxsampleraudiodriver.la
23 schoenebeck 288 liblinuxsampleraudiodriver_la_SOURCES = AudioChannel.cpp AudioChannel.h AudioOutputDevice.cpp AudioOutputDevice.h AudioOutputDeviceFactory.h AudioOutputDeviceFactory.cpp $(alsa_src) $(jack_src)
24     liblinuxsampleraudiodriver_la_LIBADD = $(alsa_ladd)
25     liblinuxsampleraudiodriver_la_LDFLAGS = $(jack_lflags)

  ViewVC Help
Powered by ViewVC