OSEC

Neohapsis is currently accepting applications for employment. For more information, please visit our website www.neohapsis.com or email hr@neohapsis.com
Re: "make release" question for a non developer

From: Alexander Hall (alexanderbeard.se)
Date: Fri Mar 16 2007 - 05:51:15 CDT


Miod Vallat wrote:

> You need an empty line before each target... (here, bsd.acpi)

I should know better than to correct a developer, but apart from
that it would look better and help avoiding issues with trailing
backslashes (which should not be there anyway), this is not
really _needed_, is it?

$ cat Makefile
1:
        echo _1_
2:
        echo _2_
3:
        echo _3_
$ make 1
_1_
$ make 2
_2_
$ make 3
_3_

> > 2) Do I have to modify another file?
>
> No.

Very much noted. I have been wondering about this too.

/Alexander