/[svn]/linuxsampler/trunk/src/common/Makefile.am
ViewVC logotype

Annotation of /linuxsampler/trunk/src/common/Makefile.am

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1424 - (hide 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 schoenebeck 53 INCLUDES = $(all_includes)
2     METASOURCES = AUTO
3 schoenebeck 80
4 schoenebeck 510 AM_CXXFLAGS = -Wreturn-type -ffast-math $(CXX_CPU_SWITCH)
5 schoenebeck 80
6 schoenebeck 885 liblinuxsamplercommonincludedir = $(includedir)/linuxsampler/common
7     liblinuxsamplercommoninclude_HEADERS = \
8     Exception.h \
9 schoenebeck 1212 Thread.h \
10 schoenebeck 885 global.h \
11     optional.h \
12     Mutex.h \
13 persson 1223 SynchronizedConfig.h \
14     Condition.h
15 schoenebeck 885
16 schoenebeck 57 noinst_LTLIBRARIES = liblinuxsamplercommon.la
17 schoenebeck 654 liblinuxsamplercommon_la_SOURCES = \
18 schoenebeck 1424 global_private.cpp global_private.h \
19 schoenebeck 654 ArrayList.h \
20     Condition.cpp Condition.h \
21     ConditionServer.cpp ConditionServer.h \
22     Features.cpp Features.h \
23 schoenebeck 885 Mutex.cpp \
24     optional.cpp \
25 schoenebeck 654 Pool.h \
26     ResourceManager.h \
27     RingBuffer.h \
28     RTMath.cpp RTMath.h \
29     stacktrace.c stacktrace.h \
30 iliev 1200 Thread.cpp Thread.h \
31 schoenebeck 1332 WorkerThread.cpp WorkerThread.h \
32     Path.cpp Path.h
33 schoenebeck 1212
34     # create the plugins directory (i.e. /usr/lib/linuxsampler/plugins)
35     install-exec-hook:
36     mkdir -p $(DESTDIR)$(config_plugin_dir)
37    
38 schoenebeck 1324 # remove the plugins directory (if empty)
39 schoenebeck 1212 uninstall-hook:
40 schoenebeck 1324 rmdir --ignore-fail-on-non-empty $(DESTDIR)$(config_plugin_dir)

  ViewVC Help
Powered by ViewVC