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