/[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 1424 - (show annotations) (download)
Sun Oct 14 22:00:17 2007 UTC (16 years, 6 months ago) by schoenebeck
File size: 1007 byte(s)
* code cleanup:
- global.h now only covers global definitions that are needed for the C++
  API header files, all implementation internal global definitions are now
  in global_private.h
- atomic.h is not exposed to the C++ API anymore (replaced the references
  in SynchronizedConfig.h for this with local definitions)
- no need to include config.h anymore for using LS's API header files
- DB instruments classes are not exposed to the C++ API
- POSIX callback functions of Thread.h are hidden
- the (optional) gig Engine benchmark compiles again
- updated Doxyfile.in
- fixed warnings in API doc generation
* preparations for release 0.5.0

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

  ViewVC Help
Powered by ViewVC