From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: David Pirotte Newsgroups: gmane.lisp.guile.devel Subject: guile-lib - devel branch - patch 2 of 11 Date: Fri, 15 Jul 2016 22:41:39 -0300 Message-ID: <20160715224139.6f7e3d44@capac> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_/H9lvSnvqEe3qKXHi2G+_=cf"; protocol="application/pgp-signature" X-Trace: ger.gmane.org 1468633340 32689 80.91.229.3 (16 Jul 2016 01:42:20 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 16 Jul 2016 01:42:20 +0000 (UTC) To: guile-devel Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Sat Jul 16 03:42:10 2016 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1bOEcM-0007Jl-33 for guile-devel@m.gmane.org; Sat, 16 Jul 2016 03:42:10 +0200 Original-Received: from localhost ([::1]:35583 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bOEcL-0002KC-3E for guile-devel@m.gmane.org; Fri, 15 Jul 2016 21:42:09 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:42236) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bOEc4-0002Jw-Uv for guile-devel@gnu.org; Fri, 15 Jul 2016 21:41:54 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bOEc1-0001yp-8p for guile-devel@gnu.org; Fri, 15 Jul 2016 21:41:52 -0400 Original-Received: from maximusconfessor.all2all.org ([79.99.200.102]:34202) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bOEc0-0001yl-UV for guile-devel@gnu.org; Fri, 15 Jul 2016 21:41:49 -0400 Original-Received: from localhost (unknown [192.168.0.2]) by maximusconfessor.all2all.org (Postfix) with ESMTP id 80E8FA04C143 for ; Sat, 16 Jul 2016 03:41:48 +0200 (CEST) Original-Received: from maximusconfessor.all2all.org ([192.168.0.1]) by localhost (maximusconfessor.all2all.org [192.168.0.2]) (amavisd-new, port 10024) with ESMTP id 6oSP-x7LpXlq for ; Sat, 16 Jul 2016 03:41:43 +0200 (CEST) Original-Received: from capac (unknown [177.17.12.124]) by maximusconfessor.all2all.org (Postfix) with ESMTPSA id 0F4ABA04C141 for ; Sat, 16 Jul 2016 03:41:42 +0200 (CEST) X-Mailer: Claws Mail 3.13.2 (GTK+ 2.24.30; x86_64-pc-linux-gnu) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 79.99.200.102 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: "guile-devel" Xref: news.gmane.org gmane.lisp.guile.devel:18511 Archived-At: --Sig_/H9lvSnvqEe3qKXHi2G+_=cf Content-Type: multipart/mixed; boundary="MP_/iNUezpJc3B33uItJ3.Ao.qa" --MP_/iNUezpJc3B33uItJ3.Ao.qa Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Content-Disposition: inline guile-lib - devel branch - patch 2 of 11 --MP_/iNUezpJc3B33uItJ3.Ao.qa Content-Type: text/x-patch Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename=0002-Updating-Makefile.am.patch =46rom 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=3Dsrc 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=3D$(libdir)/pkgconfig + +SUBDIRS =3D \ + src \ + doc \ + examples \ + unit-tests =20 ACLOCAL_AMFLAGS =3D -I m4 =20 -EXTRA_DIST=3DNEWS +EXTRA_DIST =3D \ + 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 --=20 2.8.1 --MP_/iNUezpJc3B33uItJ3.Ao.qa-- --Sig_/H9lvSnvqEe3qKXHi2G+_=cf Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBCAAGBQJXiZDTAAoJEPN0/ZOjBXrXDr0H/iFsexRLK0ecLs0XE0eNY9W0 48NC1XEAAoIat4qbm/sdAZliJLOo55nev1brg+WhT22YgIRkq05Zyil4x4VCRUJ1 T6zQsxVWLgxX4GgJZ7XXHTvTPH07DlC4yfcHbO3uCymDDam0778qlgEDKBGtDLD9 kAu7MwYc2o/eltVBkQ9nHwg+C/oZrHGrrYaLhKB9DxB0oEwKVGorswQXZqrYMp+5 fGr/YlOmbZepR24328OrClsgzx5w8agOVzB1efw5qIC7vTN21G+E9kUB8OP41miu jr0j1TFCQh3NcpBh8tJkhdIlDqb1866J+SZSLXBUZPu/Lni+/u+RXlP0aGRdVAk= =Nncc -----END PGP SIGNATURE----- --Sig_/H9lvSnvqEe3qKXHi2G+_=cf--