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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1212 - (hide 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 schoenebeck 53 INCLUDES = $(all_includes)
2     METASOURCES = AUTO
3 schoenebeck 80
4 schoenebeck 510 AM_CXXFLAGS = -Wreturn-type -ffast-math $(CXX_CPU_SWITCH)
5 schoenebeck 80
6 schoenebeck 885 liblinuxsamplercommonincludedir = $(includedir)/linuxsampler/common
7     liblinuxsamplercommoninclude_HEADERS = \
8     atomic.h \
9     Exception.h \
10 schoenebeck 1212 Thread.h \
11 schoenebeck 885 global.h \
12     optional.h \
13     Mutex.h \
14     SynchronizedConfig.h
15    
16 schoenebeck 57 noinst_LTLIBRARIES = liblinuxsamplercommon.la
17 schoenebeck 654 liblinuxsamplercommon_la_SOURCES = \
18     ArrayList.h \
19     Condition.cpp Condition.h \
20     ConditionServer.cpp ConditionServer.h \
21     Features.cpp Features.h \
22 schoenebeck 1005 global.cpp \
23 schoenebeck 885 Mutex.cpp \
24     optional.cpp \
25 schoenebeck 654 Pool.h \
26     ResourceManager.h \
27     RingBuffer.h \
28     RTMath.cpp RTMath.h \
29     stacktrace.c stacktrace.h \
30 iliev 1200 Thread.cpp Thread.h \
31     WorkerThread.cpp WorkerThread.h
32 schoenebeck 1212
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