/[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 1790 - (show annotations) (download)
Sun Nov 2 12:05:00 2008 UTC (15 years, 4 months ago) by persson
File size: 1052 byte(s)
* added memory ordering constraints to improve stability on multi-core
  and multi-cpu systems

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 Condition.cpp Condition.h \
23 ConditionServer.cpp ConditionServer.h \
24 Features.cpp Features.h \
25 Mutex.cpp \
26 optional.cpp \
27 Pool.h \
28 ResourceManager.h \
29 RingBuffer.h \
30 RTMath.cpp RTMath.h \
31 stacktrace.c stacktrace.h \
32 Thread.cpp Thread.h \
33 WorkerThread.cpp WorkerThread.h \
34 Path.cpp Path.h \
35 File.cpp File.h
36
37 # create the plugins directory (i.e. /usr/lib/linuxsampler/plugins)
38 install-exec-hook:
39 mkdir -p $(DESTDIR)$(config_plugin_dir)
40
41 # remove the plugins directory (if empty)
42 uninstall-hook:
43 rmdir --ignore-fail-on-non-empty $(DESTDIR)$(config_plugin_dir)

  ViewVC Help
Powered by ViewVC