/[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 1324 - (hide annotations) (download)
Tue Sep 4 18:02:27 2007 UTC (16 years, 7 months ago) by schoenebeck
File size: 975 byte(s)
* automake fix: don't throw an error on "make uninstall" just because the
  plugin directory is not empty (fixes bug #54)

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     atomic.h \
9     Exception.h \
10 schoenebeck 1212 Thread.h \
11 schoenebeck 885 global.h \
12     optional.h \
13     Mutex.h \
14 persson 1223 SynchronizedConfig.h \
15     Condition.h
16 schoenebeck 885
17 schoenebeck 57 noinst_LTLIBRARIES = liblinuxsamplercommon.la
18 schoenebeck 654 liblinuxsamplercommon_la_SOURCES = \
19     ArrayList.h \
20     Condition.cpp Condition.h \
21     ConditionServer.cpp ConditionServer.h \
22     Features.cpp Features.h \
23 schoenebeck 1005 global.cpp \
24 schoenebeck 885 Mutex.cpp \
25     optional.cpp \
26 schoenebeck 654 Pool.h \
27     ResourceManager.h \
28     RingBuffer.h \
29     RTMath.cpp RTMath.h \
30     stacktrace.c stacktrace.h \
31 iliev 1200 Thread.cpp Thread.h \
32     WorkerThread.cpp WorkerThread.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