Subject: Re: make includes
To: Andrei Petrov <and@genesyslab.com>
From: Ignatios Souvatzis <is@beverly.kleinbus.org>
List: current-users
Date: 11/09/2000 07:32:18
On Wed, Nov 08, 2000 at 07:02:08PM -0800, Andrei Petrov wrote:
>=20
> make includes, when issued  in basesrc, when you don't have corresponding
> directory tree failes due to subdirectory is not created.
> Is that made on purpose or are there other targets which should
> be used to create that tree?

I'm not fully awake, but look at this from /usr/src/Makefile:

beforeinstall:
=2Eifndef NODISTRIBDIRS
=2Eifndef DESTDIR
        (cd ${.CURDIR}/etc && ${MAKE} DESTDIR=3D/ distrib-dirs)
=2Eelse
        (cd ${.CURDIR}/etc && ${MAKE} distrib-dirs)
=2Eendif
=2Eendif

I think you want this. (Or just use the full "make build".)

Regards,
	-is