~ubuntu-branches/ubuntu/trusty/hugin/trusty-proposed

« back to all changes in this revision

Viewing changes to src/foreign/zthread/src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Metzler
  • Date: 2011-01-06 14:28:24 UTC
  • mfrom: (1.1.9 upstream) (0.1.21 experimental)
  • Revision ID: james.westby@ubuntu.com-20110106142824-zn9lxylg5z44dynn
* Drop Cyril Brulebois from Uploaders. Thank you very much for your work.
* Bump package version. (rc3 was re-released as 2010.4.0).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Copyright (c) 2005, Eric Crahen
 
2
##
 
3
## Permission is hereby granted, free of charge, to any person obtaining a copy
 
4
## of this software and associated documentation files (the "Software"), to deal
 
5
## in the Software without restriction, including without limitation the rights
 
6
## to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 
7
## copies of the Software, and to permit persons to whom the Software is furnished
 
8
## to do so, subject to the following conditions:
 
9
## 
 
10
## The above copyright notice and this permission notice shall be included in all
 
11
## copies or substantial portions of the Software.
 
12
## 
 
13
## THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
14
## IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
15
## FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
16
## AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 
17
## WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 
18
## CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
19
 
 
20
#AM_CXXFLAGS = @COMPILER_OPTIONS@ @EXTRA_COMPILER_OPTIONS@
 
21
INCLUDES = -I../include
 
22
SUBDIRS=.
 
23
AM_CXXFLAGS=-DNDEBUG
 
24
 
 
25
#libdir=$(prefix)/lib
 
26
 
 
27
noinst_LIBRARIES = libZThread.a
 
28
 
 
29
#libZThread_a_LIBADD=@LINKER_OPTIONS@ @EXTRA_LINKER_OPTIONS@
 
30
#LIBADD=@LINKER_OPTIONS@ @EXTRA_LINKER_OPTIONS@
 
31
 
 
32
 
 
33
libZThread_a_SOURCES = \
 
34
AtomicCount.cxx \
 
35
Condition.cxx \
 
36
ConcurrentExecutor.cxx \
 
37
CountingSemaphore.cxx \
 
38
FastMutex.cxx \
 
39
FastRecursiveMutex.cxx \
 
40
Mutex.cxx \
 
41
RecursiveMutexImpl.cxx \
 
42
RecursiveMutex.cxx \
 
43
Monitor.cxx \
 
44
PoolExecutor.cxx \
 
45
PriorityCondition.cxx \
 
46
PriorityInheritanceMutex.cxx \
 
47
PriorityMutex.cxx \
 
48
PrioritySemaphore.cxx \
 
49
Semaphore.cxx \
 
50
SynchronousExecutor.cxx \
 
51
Thread.cxx \
 
52
ThreadedExecutor.cxx \
 
53
ThreadImpl.cxx \
 
54
ThreadLocalImpl.cxx \
 
55
ThreadQueue.cxx \
 
56
Time.cxx \
 
57
ThreadOps.cxx
 
58