From owner-cvs-src@FreeBSD.ORG Thu Apr 28 07:55:57 2005 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 1E61716A4CE; Thu, 28 Apr 2005 07:55:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03D0643D31; Thu, 28 Apr 2005 07:55:57 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j3S7tuCr010364; Thu, 28 Apr 2005 07:55:56 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j3S7tukK010363; Thu, 28 Apr 2005 07:55:56 GMT (envelope-from harti) Message-Id: <200504280755.j3S7tukK010363@repoman.freebsd.org> From: Hartmut Brandt Date: Thu, 28 Apr 2005 07:55:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/make Makefile directive_hash.c directive_hash.h 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: Thu, 28 Apr 2005 07:55:57 -0000 harti 2005-04-28 07:55:56 UTC FreeBSD src repository Modified files: usr.bin/make Makefile parse.c Added files: usr.bin/make directive_hash.c directive_hash.h Log: Move the hash function for directives into its own file and add a Makefile target to re-created this file. Note, that there is no explicite dependency to automatically re-create the file, because this is needed only when the directive table changes and it requires the (yet to come) devel/mph port. Submitted by: Max Okumoto (first version) Revision Changes Path 1.46 +55 -2 src/usr.bin/make/Makefile 1.1 +66 -0 src/usr.bin/make/directive_hash.c (new) 1.1 +36 -0 src/usr.bin/make/directive_hash.h (new) 1.97 +3 -65 src/usr.bin/make/parse.c