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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1212 - (show annotations) (download)
Tue May 29 23:59:36 2007 UTC (16 years, 9 months ago) by schoenebeck
File size: 1368 byte(s)
* added highly experimental support for on-the-fly instrument editing
  within the sampler's process (by using instrument editor plugins),
  you'll notice the new "Registered instrument editors:" message on
  startup, the plugin path can be overridden at compile time with
  ./configure --enable-plugin-dir=/some/dir
* added a new LSCP command "EDIT INSTRUMENT <sampler-channel>" to spawn
  a matching instrument editor for the instrument on the given sampler
  channel (LSCP command syntax might be subject to change soon)
* config.h is not going to be installed along with liblinuxsampler's
  API header files anymore (not necessary anymore)
* take care of $(DESTDIR) when creating the instruments DB on 'make
  install' rule (needed for packaging and cross compilation)
* bumped version to 0.4.0.5cvs

1 # set the include path found by configure
2 INCLUDES= $(all_includes)
3
4 if HAVE_COREMIDI
5 coremidi_ldflags = -framework CoreAudio \
6 -framework CoreMIDI \
7 -framework CoreServices \
8 -framework AudioUnit
9 else
10 coremidi_ldflags =
11 endif
12
13 AM_CXXFLAGS = -Wreturn-type -ffast-math $(CXX_CPU_SWITCH)
14
15 SUBDIRS = db network engines common lib testcases drivers
16
17 liblinuxsamplerincludedir = $(includedir)/linuxsampler
18 liblinuxsamplerinclude_HEADERS = Sampler.h EventListeners.h
19
20 pkglib_LTLIBRARIES = liblinuxsampler.la
21 liblinuxsampler_la_SOURCES = Sampler.cpp
22 liblinuxsampler_la_LIBADD = \
23 $(top_builddir)/src/db/liblinuxsamplerdb.la \
24 $(top_builddir)/src/network/liblinuxsamplernetwork.la \
25 $(top_builddir)/src/engines/gig/liblinuxsamplergigengine.la \
26 $(top_builddir)/src/engines/common/liblinuxsamplercommonengine.la \
27 $(top_builddir)/src/engines/liblinuxsamplerengines.la \
28 $(top_builddir)/src/drivers/liblinuxsamplerdrivers.la \
29 $(top_builddir)/src/drivers/audio/liblinuxsampleraudiodriver.la \
30 $(top_builddir)/src/drivers/midi/liblinuxsamplermididriver.la \
31 $(top_builddir)/src/common/liblinuxsamplercommon.la
32 liblinuxsampler_la_LDFLAGS = -version-info @SHARED_VERSION_INFO@ @SHLIB_VERSION_ARG@
33
34 bin_PROGRAMS = linuxsampler
35 linuxsampler_SOURCES = linuxsampler.cpp
36 linuxsampler_LDADD = $(top_builddir)/src/liblinuxsampler.la
37 linuxsampler_LDFLAGS = $(coremidi_ldflags)

  ViewVC Help
Powered by ViewVC