Enforce proper sequencing of world and kernel targets.
authorSimon Schubert <corecode@dragonflybsd.org>
Wed, 30 Apr 2008 23:05:33 +0000 (23:05 +0000)
committerSimon Schubert <corecode@dragonflybsd.org>
Wed, 30 Apr 2008 23:05:33 +0000 (23:05 +0000)
commit828e58f9fa7c532a50ac0e55d3f550e4dd8456c5
treef42cf7ec2386e91cb86980c227196f5e18e00dea
parentf0d2e17fb976150e37849f9d124167f4da391183
Enforce proper sequencing of world and kernel targets.

.ORDER: does *not* take an arbitrary list of targets of which all pairs
are supposed to be built in their specified sequence,
instead it specifies which adjacent pairs need to be built in sequence.
As a result, given a sequence "buildworld buildkernel quickkernel" and
the make targets "buildworld" and "quickkernel", make would still
parallelize the build of these targets.

Additionally, introduce quickworld to the sequencing.
Makefile