/[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 2581 - (show annotations) (download)
Fri May 30 12:48:05 2014 UTC (9 years, 10 months ago) by schoenebeck
File size: 1183 byte(s)
* (WIP) Implemented parser and VM for upcoming new real-time instrument
  script support. It needs yet to be integrated into the sampler's
  sampler engines. You can toy around for now with the command line tool
  "ls_instr_script" and i.e. examples showing the core language features
  under src/scriptvm/examples/.
* Bumped version (1.0.0.svn41).

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 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 ladspa.h \
39 Ref.h Ref.cpp \
40 ChangeFlagRelaxed.h
41
42 # create the plugins directory (i.e. /usr/lib/linuxsampler/plugins)
43 install-exec-hook:
44 mkdir -p $(DESTDIR)$(config_plugin_dir)
45
46 # remove the plugins directory (if empty)
47 uninstall-hook:
48 rmdir --ignore-fail-on-non-empty $(DESTDIR)$(config_plugin_dir)

  ViewVC Help
Powered by ViewVC