1## ---
2##
3## $Id: Makefile.am,v 1.10 2008/07/15 20:33:31 hartwork Exp $
4##
5## CppTest - A C++ Unit Testing Framework
6## Copyright (c) 2003 Niklas Lundell
7##
8## ---
9##
10## This library is free software; you can redistribute it and/or
11## modify it under the terms of the GNU Lesser General Public
12## License as published by the Free Software Foundation; either
13## version 2 of the License, or (at your option) any later version.
14##
15## This library is distributed in the hope that it will be useful,
16## but WITHOUT ANY WARRANTY; without even the implied warranty of
17## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18## Lesser General Public License for more details.
19##
20## You should have received a copy of the GNU Lesser General Public
21## License along with this library; if not, write to the
22## Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23## Boston, MA 02111-1307, USA.
24##
25## ---
26
27ACLOCAL_AMFLAGS = -I config
28
29SUBDIRS = src test
30if DOC
31SUBDIRS += doc
32endif
33
34####### Distribution
35
36EXTRA_DIST = \
37	autogen.sh \
38	BUGS \
39	config/stamp-h.in \
40	INSTALL.quick \
41	libcpptest.pc \
42	README \
43	win/winconfig.h \
44	win/VisualStudio.NET/VisualStudio.NET.sln \
45	win/VisualStudio.NET/cpptest/cpptest.vcproj \
46	win/VisualStudio.NET/test/test.vcproj
47
48####### Clean
49
50MOSTLYCLEANFILES =
51
52CLEANFILES =
53
54DISTCLEANFILES = \
55	config/config.h \
56	config/stamp-h? \
57	INSTALL.quick \
58	libcpptest.pc \
59	README \
60	Makefile
61
62MAINTAINERCLEANFILES = \
63	aclocal.m4 \
64	autom4te-*.cache/* \
65	config.h \
66	configure \
67	config/config.guess \
68	config/config.sub \
69	config/depcomp \
70	config/install-sh \
71	config/ltmain.sh \
72	config/missing \
73	config/mkinstalldirs \
74	Makefile.in
75
76pkgconfigdir   = $(prefix)/libdata/pkgconfig
77pkgconfig_DATA = libcpptest.pc
78
79