Subject: Re: make question
To: Zoltan Zsido <zsido@westel900.net>
From: Jaromir Dolecek <dolecek@ics.muni.cz>
List: current-users
Date: 06/10/1999 16:41:18
Zoltan Zsido wrote:
> 
> Hi,
> Can anyone explain me the meaning of the following make conditional
> statement:
> 
> .if target(depend)
> 
> .endif

the code betwenn the if & endif is executed when the make has been
called as:
	make depend

i.e. target to be made would be 'depend'

> There isn't anything in the original Pmake tutorial about it.

Did you try man make ?

Jarda