From owner-cvs-src@FreeBSD.ORG Sat Jul 10 08:14:43 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6862116A4CE; Sat, 10 Jul 2004 08:14:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64E3543D4C; Sat, 10 Jul 2004 08:14:43 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6A8EhkL018321; Sat, 10 Jul 2004 08:14:43 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6A8Eh0r018320; Sat, 10 Jul 2004 08:14:43 GMT (envelope-from eik) Message-Id: <200407100814.i6A8Eh0r018320@repoman.freebsd.org> From: Oliver Eikemeier Date: Sat, 10 Jul 2004 08:14:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/usr.bin/make make.1 parse.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jul 2004 08:14:43 -0000 eik 2004-07-10 08:14:42 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) usr.bin/make make.1 parse.c Log: MFC of the new variable `.MAKEFILE_LIST'. Add the following to make.conf(5) to have a `deptree' target in all makefiles: .NOTMAIN: deptree deptree: @echo 'Dependency tree for ${MAKE} in ${.CURDIR}:' @l=1; \ for d in ${.MAKEFILE_LIST}; do \ case "$$d" in \ ..) l=$$(($$l-2));; \ /*) printf '%-*s%s\n' $$l '' "`realpath \"$$d\"`"; \ l=$$(($$l+2));; \ *) printf '%-*s%s\n' $$l '' \ "`realpath \"${.OBJDIR}/$$d\"`"; \ l=$$(($$l+2));; \ esac \ done Revision Changes Path 1.29.2.16 +19 -2 src/usr.bin/make/make.1 1.22.2.2 +10 -1 src/usr.bin/make/parse.c