/[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 2630 - (show annotations) (download)
Fri Jun 13 15:01:06 2014 UTC (9 years, 10 months ago) by schoenebeck
File size: 1207 byte(s)
* Implemented built-in instrument script function "set_event_mark()".
* Implemented built-in instrument script function "delete_event_mark()".
* Implemented built-in instrument script function "by_marks()".
* Added built-in instrument script int const variables $MARK_1 to $MARK_28.
* Built-in instrument script functions "ignore_event()", "note_off()" and
  "gig_set_dim_zone()" now also accept an array of event IDs as argument
  (i.e. return value of new script function "by_marks()").
* Bumped version (1.0.0.svn53).

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

  ViewVC Help
Powered by ViewVC