From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:51062) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j4nzf-0007X0-25 for guix-patches@gnu.org; Thu, 20 Feb 2020 10:44:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j4nze-0002x7-2O for guix-patches@gnu.org; Thu, 20 Feb 2020 10:44:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:39666) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j4nzd-0002x3-Vp for guix-patches@gnu.org; Thu, 20 Feb 2020 10:44:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j4nzd-0007jO-Tj for guix-patches@gnu.org; Thu, 20 Feb 2020 10:44:01 -0500 Subject: [bug#39694] [SHEPHERD] [PATCH] build: Adjust clean targets. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:50885) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j4nya-0006n7-Gy for guix-patches@gnu.org; Thu, 20 Feb 2020 10:42:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j4nyZ-0002Mp-CX for guix-patches@gnu.org; Thu, 20 Feb 2020 10:42:56 -0500 Received: from flashner.co.il ([178.62.234.194]:49626) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1j4nyZ-0002Mc-6S for guix-patches@gnu.org; Thu, 20 Feb 2020 10:42:55 -0500 From: Efraim Flashner Date: Thu, 20 Feb 2020 17:42:21 +0200 Message-Id: <20200220154221.22104-1-efraim@flashner.co.il> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39694@debbugs.gnu.org Cc: Efraim Flashner Makefile.am: Add man pages to the 'make clean' target. --- Currently 'man shepherd' shows version 0.6.1, 'man herd' 0.6.0, 'man halt' and 'man reboot' 0.3.2. With this patch these 4 manpages are added to the 'make clean' list and are deleted. The manpage creation works as expected. --- Makefile.am | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.am b/Makefile.am index 9a1f019..8cf98d6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,6 +2,7 @@ # Copyright =C2=A9 2002, 2003 Wolfgang J=C3=A4hrling # Copyright =C2=A9 2013, 2014, 2015, 2016, 2018, 2019 Ludovic Court=C3=A8= s # Copyright =C2=A9 2018 Carlo Zancanaro +# Copyright =C2=A9 2020 Efraim Flashner # # This file is part of the GNU Shepherd. # @@ -122,6 +123,8 @@ doc/%.8: modules/shepherd/scripts/%.scm dist_man1_MANS =3D doc/shepherd.1 doc/herd.1 dist_man8_MANS =3D doc/halt.8 doc/reboot.8 =20 +CLEANFILES +=3D $(dist_man1_MANS) $(dist_man8_MANS) + # Things not automatically included in the distribution. EXTRA_DIST +=3D \ build-aux/config.rpath \ --=20 2.25.1