/[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 2135 - (show annotations) (download)
Thu Sep 30 20:00:43 2010 UTC (13 years, 6 months ago) by schoenebeck
File size: 1128 byte(s)
* added and implemented a set of 19 new LSCP commands for controlling
  internal effects:
  - added LSCP command "GET AVAILABLE_EFFECTS"
  - added LSCP command "LIST AVAILABLE_EFFECTS"
  - added LSCP command "GET EFFECT INFO <effect-index>"
  - added LSCP command "CREATE EFFECT_INSTANCE <effect-index>"
  - added LSCP command
    "CREATE EFFECT_INSTANCE <effect-system> <module> <effect-name>"
  - added LSCP command "DESTROY EFFECT_INSTANCE <effect-instance>"
  - added LSCP command "GET EFFECT_INSTANCES"
  - added LSCP command "LIST EFFECT_INSTANCES"
  - added LSCP command "GET EFFECT_INSTANCE INFO <effect-instance>"
  - added LSCP command "GET EFFECT_INSTANCE_INPUT_CONTROL INFO
    <effect-instance> <input-control>"
  - added LSCP command "SET EFFECT_INSTANCE_INPUT_CONTROL <effect-instance>
    <input-control> <value>"
  - added LSCP command "GET MASTER_EFFECT_CHAINS <audio-device>"
  - added LSCP command "LIST MASTER_EFFECT_CHAINS <audio-device>"
  - added LSCP command "ADD MASTER_EFFECT_CHAIN <audio-device>"
  - added LSCP command
    "REMOVE MASTER_EFFECT_CHAIN <audio-device> <effect-chain>"
  - added LSCP command
    "GET MASTER_EFFECT_CHAIN INFO <audio-device> <effect-chain>"
  - added LSCP command "APPEND MASTER_EFFECT_CHAIN EFFECT <audio-device>
    <effect-chain> <effect-instance>"
  - added LSCP command "INSERT MASTER_EFFECT_CHAIN EFFECT <audio-device>
    <effect-chain> <effect-instance> <effect-chain-pos>"
  - added LSCP command "REMOVE MASTER_EFFECT_CHAIN EFFECT <audio-device>
    <effect-chain> <effect-instance>"
* bumped version to 1.0.0.cvs7

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 Exception.h \
9 Thread.h \
10 global.h \
11 optional.h \
12 Mutex.h \
13 SynchronizedConfig.h \
14 Condition.h \
15 lsatomic.h
16
17 noinst_LTLIBRARIES = liblinuxsamplercommon.la
18 liblinuxsamplercommon_la_SOURCES = \
19 global_private.cpp global_private.h \
20 atomic.h \
21 ArrayList.h \
22 DynamicLibraries.cpp DynamicLibraries.h \
23 IDGenerator.cpp IDGenerator.h \
24 Condition.cpp Condition.h \
25 ConditionServer.cpp ConditionServer.h \
26 Features.cpp Features.h \
27 Mutex.cpp \
28 optional.cpp \
29 Pool.h \
30 ResourceManager.h \
31 RingBuffer.h \
32 RTMath.cpp RTMath.h \
33 stacktrace.c stacktrace.h \
34 Thread.cpp Thread.h \
35 WorkerThread.cpp WorkerThread.h \
36 Path.cpp Path.h \
37 File.cpp File.h
38
39 # create the plugins directory (i.e. /usr/lib/linuxsampler/plugins)
40 install-exec-hook:
41 mkdir -p $(DESTDIR)$(config_plugin_dir)
42
43 # remove the plugins directory (if empty)
44 uninstall-hook:
45 rmdir --ignore-fail-on-non-empty $(DESTDIR)$(config_plugin_dir)

  ViewVC Help
Powered by ViewVC