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

Contents of /linuxsampler/trunk/src/common/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, 10 months ago) by schoenebeck
File size: 922 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 INCLUDES = $(all_includes)
2 METASOURCES = AUTO
3
4 AM_CXXFLAGS = -Wreturn-type -ffast-math $(CXX_CPU_SWITCH)
5
6 liblinuxsamplercommonincludedir = $(includedir)/linuxsampler/common
7 liblinuxsamplercommoninclude_HEADERS = \
8 atomic.h \
9 Exception.h \
10 Thread.h \
11 global.h \
12 optional.h \
13 Mutex.h \
14 SynchronizedConfig.h
15
16 noinst_LTLIBRARIES = liblinuxsamplercommon.la
17 liblinuxsamplercommon_la_SOURCES = \
18 ArrayList.h \
19 Condition.cpp Condition.h \
20 ConditionServer.cpp ConditionServer.h \
21 Features.cpp Features.h \
22 global.cpp \
23 Mutex.cpp \
24 optional.cpp \
25 Pool.h \
26 ResourceManager.h \
27 RingBuffer.h \
28 RTMath.cpp RTMath.h \
29 stacktrace.c stacktrace.h \
30 Thread.cpp Thread.h \
31 WorkerThread.cpp WorkerThread.h
32
33 # create the plugins directory (i.e. /usr/lib/linuxsampler/plugins)
34 install-exec-hook:
35 mkdir -p $(DESTDIR)$(config_plugin_dir)
36
37 # remove the plugins directory
38 uninstall-hook:
39 rmdir $(DESTDIR)$(config_plugin_dir)

  ViewVC Help
Powered by ViewVC