From owner-freebsd-questions Fri Dec 13 7:29:30 2002 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 719F437B401 for ; Fri, 13 Dec 2002 07:29:29 -0800 (PST) Received: from mail.bellavista.cz (mail.bellavista.cz [62.168.44.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBCF743EC5 for ; Fri, 13 Dec 2002 07:29:27 -0800 (PST) (envelope-from neuhauser@bellavista.cz) Received: from freepuppy.bellavista.cz (freepuppy.bellavista.cz [10.0.0.10]) by mail.bellavista.cz (Postfix) with ESMTP id 684BD5C; Fri, 13 Dec 2002 17:25:53 +0100 (CET) Received: by freepuppy.bellavista.cz (Postfix, from userid 1001) id CAC472FDB10; Fri, 13 Dec 2002 16:29:08 +0100 (CET) Date: Fri, 13 Dec 2002 16:29:08 +0100 From: Roman Neuhauser To: admin@shana.tecpro.com Cc: questions@freebsd.org Subject: Re: correct syntax for compiling drac for use with postfix Message-ID: <20021213152908.GM56031@freepuppy.bellavista.cz> Mail-Followup-To: admin@shana.tecpro.com, questions@freebsd.org References: <2462.66.83.118.62.1039387720.squirrel@shana.tecpro.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <2462.66.83.118.62.1039387720.squirrel@shana.tecpro.com> User-Agent: Mutt/1.5.1i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG # admin@shana.tecpro.com / 2002-12-08 17:48:40 -0500: > Sorry for the dumb question, but is the proper syntax for installing > drac on a machine running postfix as follows: > make install -DWITH_POSTFIX=yes make(1) has many quirks, but the basic syntax is very simple. understanding make(1) will improve your life! seriously, you can get much more from the ports if you know how the system works. roman@freepuppy ~/tmp 1020:0 > < Makefile all: .if defined(FOO) @echo "\$${FOO} is defined" @echo "\$${FOO}: '${FOO}'" .else @echo "\$${FOO} is undefined" .endif .PHONY: all roman@freepuppy ~/tmp 1021:0 > make -DFOO=yes ${FOO} is undefined roman@freepuppy ~/tmp 1022:0 > make -DFOO ${FOO} is defined ${FOO}: '1' roman@freepuppy ~/tmp 1023:0 > make FOO=yes ${FOO} is defined ${FOO}: 'yes' roman@freepuppy ~/tmp 1024:0 > -- If you cc me or remove the list(s) completely I'll most likely ignore your message. see http://www.eyrie.org./~eagle/faqs/questions.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message