From owner-cvs-all@FreeBSD.ORG Thu Apr 28 12:05:44 2005 Return-Path: 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 32F3716A4CE; Thu, 28 Apr 2005 12:05:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0452443D39; Thu, 28 Apr 2005 12:05:44 +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 j3SC5hlS035143; Thu, 28 Apr 2005 12:05:43 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j3SC5h1L035142; Thu, 28 Apr 2005 12:05:43 GMT (envelope-from harti) Message-Id: <200504281205.j3SC5h1L035142@repoman.freebsd.org> From: Hartmut Brandt Date: Thu, 28 Apr 2005 12:05:43 +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-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2005 12:05:44 -0000 harti 2005-04-28 12:05:43 UTC FreeBSD src repository Modified files: usr.bin/make Makefile directive_hash.c directive_hash.h parse.c Log: Use a minimal perfect hash for the special sources/targets too. Add the corresponding magic to create the hash function to the Makefile. Revision Changes Path 1.48 +25 -6 src/usr.bin/make/Makefile 1.3 +63 -0 src/usr.bin/make/directive_hash.c 1.2 +1 -0 src/usr.bin/make/directive_hash.h 1.98 +25 -43 src/usr.bin/make/parse.c