Subject: ordering dependencies in /usr/src/Makefile ?
To: None <tech-userlevel@netbsd.org>
From: Assar Westerlund <assar@sics.se>
List: tech-userlevel
Date: 01/30/2000 22:21:12
/usr/src/Makefile contains the following dependency to make sure
${DESTDIR}/usr/include and ${DESTDIR}/usr/include/sys are installed
before the gnu includes are built:

# This is needed for libstdc++ and gen-params.
includes-gnu: includes-include includes-sys

It turns out that it's also needed for some stuff in
`cryptosrc-intl/lib'.  Is adding the following line to Makefile the
right way of doing it or should some other way be used?

includes-lib: includes-include includes-sys

/assar