# [EMAIL PROTECTED] / 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 [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message

Reply via email to