On Wed, Mar 16, 2005 at 02:50:17PM -0600, Dan Nelson wrote:
> 
> FreeBSD's make understands the gnu-style include syntax with no leading
> dot, even though it's undocumented (grep for SYSVINCLUDE in the
> source).  Automake is the usual way around compatibility issues; it has
> its own conditional syntax that it expands out when it generates the
> Makefile, and will create the appropriate dependency lines.

Sure enough.

BSD make requires quotes around the filename in .include ".depend" but
if one removes the leading dot on "include" it can't find .depend if the
filename is still quoted.

This works in BSD make altho its not doing anything that isn't
automatically done:
.include ".depend"

Above is apparently the same as this in GNU make and accepted by BSD:
include .depend

This does not work in BSD as it seems to be trying to find ".depend"
with quotes, which doesn't exist:
include ".depend"

-- 
David Kelly N4HHE, [EMAIL PROTECTED]
========================================================================
Whom computers would destroy, they must first drive mad.
_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to