1# ReZound misc/Makefile.am Written by Anthony Ventimiglia
2## Process this file with automake to create Makefile.in
3##
4##
5##   Copyright (C) 2002 - Anthony Ventimiglia
6##
7##   This file is part of ReZound, an audio editing application,
8##
9##   ReZound is free software; you can redistribute it and/or modify
10##   it under the terms of the GNU General Public License as published
11##   by the Free Software Foundation; either version 2 of the License,
12##   or (at your option) any later version.
13##
14##   ReZound is distributed in the hope that it will be useful, but
15##   WITHOUT ANY WARRANTY; without even the implied warranty of
16##   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17##   GNU General Public License for more details.
18##
19##   You should have received a copy of the GNU General Public License
20##   along with this program; if not, write to the Free Software
21##   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA
22##
23
24include $(top_srcdir)/config/am_include.mk
25
26SUBDIRS= \
27	CNestedDataFile
28
29noinst_HEADERS=\
30		AThread.h \
31		CAtomicCounter.h \
32		CMutex.h \
33		CConditionVariable.h \
34		CPath.h \
35		CRWMutex.h \
36		TAutoBuffer.h \
37		TTempVarSetter.h \
38		TMemoryPipe.h \
39		TMemoryPipe.cpp \
40		clocks.h \
41		ScopedAutoReleasePool.h
42
43EXTRA_DIST= \
44	istring \
45	endian_util.h \
46	auto_array.h \
47	TTempVarSetter.h \
48	missing/sstream-missing \
49	missing/stdint.h-missing
50
51noinst_LTLIBRARIES=libmisc.la
52
53libmisc_la_SOURCES= \
54			CMutex.cpp  \
55			CRWMutex.cpp \
56			CConditionVariable.cpp  \
57			AThread.cpp \
58			clocks.cpp
59
60
61