Source-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: CVS commit: src
On 4/18/06, Hubert Feyrer <hubert%feyrer.de@localhost> wrote:
> On Tue, 18 Apr 2006, Alan Ritter wrote:
> > I think so, in usr.sbin/ndiscvt/Makefile I do this:
> >
> > .if ${MACHINE} == "i386"
> > PROG= ndiscvt
> > .endif
> >
> > This looked like how it was done in the other Makefiles; hopefully
> > this is correct.
>
> I'd expect not to step into src/usr.sbin/ndiscvt at all (why bother?),
> but I won't claim to be an expert in that area.
Yes, it looks like there is some stuff that is left out this way, for
instance from usr.sbin/Makefile:
# IP Filter
.if (${MKIPFILTER} != "no")
SUBDIR+=ipf
.endif
But it appears that all the machine-dependant stuff is done inside the
directory, for example usr.sbin/ipwctl contains:
.if ${MACHINE} == "i386"
PROG= ipwctl
.endif
Anyway, I was just trying to follow what everything else looked like.
Home |
Main Index |
Thread Index |
Old Index