From 348842babc7e8a200e2b1baf62ac7850a54661df Mon Sep 17 00:00:00 2001 From: David Pirotte Date: Tue, 12 Jul 2016 21:03:55 -0300 Subject: [PATCH 02/11] Updating Makefile.am * Makefile.am: Adding a license header, completing EXTRA_DIST and adding a +distclean-local target. --- Makefile.am | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 61 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index ae6d023..5c7ea91 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,64 @@ -SUBDIRS=src doc examples unit-tests + +#### +#### Copyright (C) 2016 David Pirotte +#### David Pirotte + +#### 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 +#### . +#### + + +pkgconfigdir=$(libdir)/pkgconfig + +SUBDIRS = \ + src \ + doc \ + examples \ + unit-tests ACLOCAL_AMFLAGS = -I m4 -EXTRA_DIST=NEWS +EXTRA_DIST = \ + AUTHORS \ + ChangeLog \ + COPYING \ + COPYING.GPL \ + COPYING.LGPL \ + INSTALL \ + NEWS \ + README \ + dev-environ.in \ + $(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 dev-environ + 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 -- 2.8.1