From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Re: Recursive makefiles Date: Wed, 28 Aug 2013 23:41:26 +0200 Message-ID: <20130828214126.GA26655@debian> References: <87vc2p7ca3.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45158) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VEnUe-0002Hq-Om for guix-devel@gnu.org; Wed, 28 Aug 2013 17:41:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VEnUY-0001qo-P1 for guix-devel@gnu.org; Wed, 28 Aug 2013 17:41:36 -0400 Content-Disposition: inline In-Reply-To: <87vc2p7ca3.fsf@gnu.org> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Ludovic =?iso-8859-15?Q?Court=E8s?= Cc: guix-devel@gnu.org On Wed, Aug 28, 2013 at 11:09:40PM +0200, Ludovic Courtès wrote: > Please don’t do that: the build system purposefully avoids recursive > makefiles, to improve parallelism etc. (see > .) I did it for two reasons: - It allows to type "make ps" and "make pdf" in the main directory, instead of "cd doc; make pdf; cd ..". - It avoids clutter in the main directory (not checked this time, but I think there were a few files guix.* then). Andreas