1
2####
3#### Copyright (C) 2018 David Pirotte
4#### David Pirotte <david at altosw dot be>
5
6#### This file is part of Guile-Lib.
7
8#### Guile-Lib is free software: you can redistribute it, as a whole,
9#### and/or modify it under the terms of the GNU General Public
10#### License as published by the Free Software Foundation, either
11#### version 3 of the License, or (at your option) any later version.
12
13#### Each Guile-Lib module contained in Guile-Lib has its own copying
14#### conditions, specified in the comments at the beginning of the
15#### module's source file.
16
17#### Guile-Lib is distributed in the hope that it will be useful, but
18#### WITHOUT ANY WARRANTY; without even the implied warranty of
19#### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20#### General Public License for more details.
21
22#### You should have received a copy of the GNU General Public License
23#### along with Guile-Lib.  If not, see
24#### <http://www.gnu.org/licenses/>.
25####
26
27
28pkgconfigdir=$(libdir)/pkgconfig
29pkgconfig_DATA=meta/guile-lib-1.0.pc
30
31SUBDIRS = 		\
32	src 		\
33	doc 		\
34	examples	\
35	unit-tests
36
37ACLOCAL_AMFLAGS = -I m4
38
39EXTRA_DIST = \
40	AUTHORS				\
41	ChangeLog			\
42	COPYING				\
43	COPYING.GPL			\
44	COPYING.LGPL			\
45	INSTALL				\
46	NEWS				\
47	README				\
48	pre-inst-env.in			\
49	meta/guile-lib-1.0.pc.in	\
50	$(wildcard am/*)		\
51	$(wildcard m4/*)
52
53
54distclean-local:
55	rm -f Makefile.in
56	rm -f aclocal.m4
57	rm -rf autom4te.cache
58	rm -rf build-aux
59	rm -f configure
60	rm -f pre-inst-env
61	rm -f meta/guile-lib-1.0.pc
62	rm -f *~
63	rm -f guile-lib-*.tar.gz
64	rm -f src/*~
65	rm -f src/TAGS
66	rm -f src/Makefile.in
67	rm -f examples/Makefile.in
68	rm -f unit-tests/Makefile.in
69