From owner-freebsd-current Tue Oct 8 18:21:19 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id SAA22969 for current-outgoing; Tue, 8 Oct 1996 18:21:19 -0700 (PDT) Received: from fly.HiWAAY.net (root@fly.HiWAAY.net [204.214.4.2]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id SAA22960; Tue, 8 Oct 1996 18:21:15 -0700 (PDT) Received: from bonsai.hiwaay.net by fly.HiWAAY.net; (8.7.5/1.1.8.2/21Sep95-1003PM) id UAA15340; Tue, 8 Oct 1996 20:15:26 -0500 (CDT) Message-ID: <325AFCAC.538FFB68@hiwaay.net> Date: Tue, 08 Oct 1996 20:15:24 -0500 From: Steve Price Reply-To: steve@FreeBSD.org X-Mailer: Mozilla 2.02 (X11; I; FreeBSD 2.2-CURRENT i386) MIME-Version: 1.0 To: Wolfram Schneider CC: current@FreeBSD.org Subject: Re: .depend References: <199610082021.WAA06329@campa.panke.de> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-current@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk Wolfram Schneider wrote: > > I think we should add an enviroment variable (e.g. DEPENDFILE) to > make(1) for `.depend'. mkdep -f foo support different depend files. > > --Wolfram Schneider I don't know exactly what you are trying to do, but you can put something like this in your Makefile: .if exists(${DEPENDFILE}) .include <${DEPENDFILE}> .endif This alleviates the need to augment make(1). Does this help? If not, please give me a specific example of what you are trying to do and I will see what I can do to help. :) Steve