From owner-cvs-all Tue Sep 17 15:31:29 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4432237B401; Tue, 17 Sep 2002 15:31:28 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03C0443E86; Tue, 17 Sep 2002 15:31:28 -0700 (PDT) (envelope-from jmallett@FreeBSD.org) Received: from freefall.freebsd.org (jmallett@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id g8HMVRCo008240; Tue, 17 Sep 2002 15:31:27 -0700 (PDT) (envelope-from jmallett@freefall.freebsd.org) Received: (from jmallett@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g8HMVRGg008239; Tue, 17 Sep 2002 15:31:27 -0700 (PDT) Message-Id: <200209172231.g8HMVRGg008239@freefall.freebsd.org> From: Juli Mallett Date: Tue, 17 Sep 2002 15:31:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/make Makefile arch.c compat.c cond.c dir.c for.c job.c make.c make.h parse.c suff.c targ.c var.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jmallett 2002/09/17 15:31:27 PDT Modified files: usr.bin/make Makefile arch.c compat.c cond.c dir.c for.c job.c make.c make.h parse.c suff.c targ.c var.c Log: Move common use of if (DEBUG(FOO)) printf... to DEBUGF(FOO, ...), using variable length arguments to a macro. Bump version as this makes DEBUG statements *always* go to stderr rather than sometimes stdout. There are a few stragglers, which I will take care of as soon as I can. Mostly these relate to the need-for-death-of some of the remote job code. Nearby stylistic nits and XXX added/fixed where appropriate. Revision Changes Path 1.27 +1 -1 src/usr.bin/make/Makefile 1.30 +15 -20 src/usr.bin/make/arch.c 1.30 +5 -11 src/usr.bin/make/compat.c 1.21 +4 -8 src/usr.bin/make/cond.c 1.26 +27 -77 src/usr.bin/make/dir.c 1.17 +4 -8 src/usr.bin/make/for.c 1.40 +42 -158 src/usr.bin/make/job.c 1.19 +25 -49 src/usr.bin/make/make.c 1.20 +7 -0 src/usr.bin/make/make.h 1.41 +1 -2 src/usr.bin/make/parse.c 1.22 +32 -76 src/usr.bin/make/suff.c 1.20 +2 -2 src/usr.bin/make/targ.c 1.31 +7 -19 src/usr.bin/make/var.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message