From owner-svn-src-head@FreeBSD.ORG Wed Dec 17 19:46:15 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF608386; Wed, 17 Dec 2014 19:46:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9A10D11AA; Wed, 17 Dec 2014 19:46:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBHJkFIF068265; Wed, 17 Dec 2014 19:46:15 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBHJkDnf068253; Wed, 17 Dec 2014 19:46:13 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201412171946.sBHJkDnf068253@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Wed, 17 Dec 2014 19:46:13 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r275866 - in head/gnu/usr.bin/groff: . src src/devices src/libs src/preproc src/roff src/utils X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Dec 2014 19:46:15 -0000 Author: ngie Date: Wed Dec 17 19:46:12 2014 New Revision: 275866 URL: https://svnweb.freebsd.org/changeset/base/275866 Log: Parallelize building gnu/usr.bin/groff This speeds up building the directory from the bootstrap-tools stage in buildworld as well as building from the subdirectory Based on a patch submitted via -arch: https://lists.freebsd.org/pipermail/freebsd-arch/2014-December/016493.html MFC after: 1 week Submitted by: Jia-Shiun Li Sponsored by: EMC / Isilon Storage Division Modified: head/gnu/usr.bin/groff/Makefile head/gnu/usr.bin/groff/src/Makefile head/gnu/usr.bin/groff/src/devices/Makefile head/gnu/usr.bin/groff/src/libs/Makefile head/gnu/usr.bin/groff/src/preproc/Makefile head/gnu/usr.bin/groff/src/roff/Makefile head/gnu/usr.bin/groff/src/utils/Makefile Modified: head/gnu/usr.bin/groff/Makefile ============================================================================== --- head/gnu/usr.bin/groff/Makefile Wed Dec 17 17:30:54 2014 (r275865) +++ head/gnu/usr.bin/groff/Makefile Wed Dec 17 19:46:12 2014 (r275866) @@ -2,4 +2,8 @@ SUBDIR= contrib doc font man src tmac +.for subdir in ${SUBDIR:Nsrc} +SUBDIR_DEPEND_${subdir}= src +.endfor + .include Modified: head/gnu/usr.bin/groff/src/Makefile ============================================================================== --- head/gnu/usr.bin/groff/src/Makefile Wed Dec 17 17:30:54 2014 (r275865) +++ head/gnu/usr.bin/groff/src/Makefile Wed Dec 17 19:46:12 2014 (r275866) @@ -2,4 +2,10 @@ SUBDIR= libs devices preproc roff utils +SUBDIR_PARALLEL= + +.for subdir in ${SUBDIR:Nlibs} +SUBDIR_DEPEND_${subdir}= libs +.endfor + .include Modified: head/gnu/usr.bin/groff/src/devices/Makefile ============================================================================== --- head/gnu/usr.bin/groff/src/devices/Makefile Wed Dec 17 17:30:54 2014 (r275865) +++ head/gnu/usr.bin/groff/src/devices/Makefile Wed Dec 17 19:46:12 2014 (r275866) @@ -2,4 +2,6 @@ SUBDIR= grodvi grohtml grolbp grolj4 grops grotty +SUBDIR_PARALLEL= + .include Modified: head/gnu/usr.bin/groff/src/libs/Makefile ============================================================================== --- head/gnu/usr.bin/groff/src/libs/Makefile Wed Dec 17 17:30:54 2014 (r275865) +++ head/gnu/usr.bin/groff/src/libs/Makefile Wed Dec 17 19:46:12 2014 (r275866) @@ -2,4 +2,6 @@ SUBDIR= libgroff libdriver libbib +SUBDIR_PARALLEL= + .include Modified: head/gnu/usr.bin/groff/src/preproc/Makefile ============================================================================== --- head/gnu/usr.bin/groff/src/preproc/Makefile Wed Dec 17 17:30:54 2014 (r275865) +++ head/gnu/usr.bin/groff/src/preproc/Makefile Wed Dec 17 19:46:12 2014 (r275866) @@ -2,4 +2,6 @@ SUBDIR= eqn grn html pic refer soelim tbl +SUBDIR_PARALLEL= + .include Modified: head/gnu/usr.bin/groff/src/roff/Makefile ============================================================================== --- head/gnu/usr.bin/groff/src/roff/Makefile Wed Dec 17 17:30:54 2014 (r275865) +++ head/gnu/usr.bin/groff/src/roff/Makefile Wed Dec 17 19:46:12 2014 (r275866) @@ -2,4 +2,6 @@ SUBDIR= groff grog nroff psroff troff +SUBDIR_PARALLEL= + .include Modified: head/gnu/usr.bin/groff/src/utils/Makefile ============================================================================== --- head/gnu/usr.bin/groff/src/utils/Makefile Wed Dec 17 17:30:54 2014 (r275865) +++ head/gnu/usr.bin/groff/src/utils/Makefile Wed Dec 17 19:46:12 2014 (r275866) @@ -2,4 +2,6 @@ SUBDIR= addftinfo afmtodit hpftodit indxbib lkbib lookbib pfbtops tfmtodit +SUBDIR_PARALLEL= + .include