From owner-freebsd-questions@FreeBSD.ORG Tue Nov 16 06:02:42 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F15916A4CE for ; Tue, 16 Nov 2004 06:02:42 +0000 (GMT) Received: from nekulturny.org (S0106000c41b2b9a3.cg.shawcable.net [68.144.45.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id A382843D46 for ; Tue, 16 Nov 2004 06:02:41 +0000 (GMT) (envelope-from flowers@nekulturny.org) Received: from nekulturny.org (localhost [127.0.0.1]) by nekulturny.org (8.13.1/8.13.1) with ESMTP id iAG62dk6008776; Mon, 15 Nov 2004 23:02:39 -0700 (MST) (envelope-from flowers@nekulturny.org) Received: (from flowers@localhost) by nekulturny.org (8.13.1/8.13.1/Submit) id iAG62cOx008775; Mon, 15 Nov 2004 23:02:38 -0700 (MST) (envelope-from flowers) Date: Mon, 15 Nov 2004 23:02:37 -0700 From: Danny MacMillan To: Mark Jayson Alvarez Message-ID: <20041116060237.GA8332@procyon.nekulturny.org> References: <20041116033458.89117.qmail@web51603.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20041116033458.89117.qmail@web51603.mail.yahoo.com> User-Agent: Mutt/1.4.2.1i cc: freebsd-questions@freebsd.org Subject: Re: Where can I find those various make arguments (e.g. install, search, maintainer, build) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Nov 2004 06:02:42 -0000 On Mon, Nov 15, 2004 at 08:34:58PM -0700, Mark Jayson Alvarez wrote: > I want to know where can I find those various make > arguments. For example, when invoking 'make search > key=.." while inside /usr/ports, I can easily locate > the ports I am looking for. I want to know what else > can I 'make' aside from: > > search key="value" > install > buildkernel > buildworld > maintainer > clean > > Kindly point me to a manual or something these various > options or arguments of 'make" are defined. Technically, what you're asking about is make targets. These are defined in, and completely dependent on, the makefile, not make itself. Within the ports tree, a system of makefiles provides the targets you list above and others. A complete list is in ports(7). You can also read the makefiles themselves. make(1) will help you decipher them. -- Danny