From owner-freebsd-bugs Sun Apr 18 22:21:44 1999 Delivered-To: freebsd-bugs@freebsd.org Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.26.10.9]) by hub.freebsd.org (Postfix) with ESMTP id C66E214C0D for ; Sun, 18 Apr 1999 22:21:39 -0700 (PDT) (envelope-from bde@godzilla.zeta.org.au) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.7/8.8.7) id PAA14619; Mon, 19 Apr 1999 15:18:52 +1000 Date: Mon, 19 Apr 1999 15:18:52 +1000 From: Bruce Evans Message-Id: <199904190518.PAA14619@godzilla.zeta.org.au> To: chris@holly.dyndns.org, dcs@newsguy.com Subject: Re: i386/11204: config -g -> no kernel, only kernel.debug Cc: freebsd-bugs@FreeBSD.ORG Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >> I thought the target "all" was required in the procedure. > > The 'all' target is run by default. The target that was >forgotten was 'depend'. No, the first target is run by default. The `all' target is just an optional convention. No target was forgotten, but the order of the targets is broken. Recent changes made the brokenness more visible. Previous order and names: kernel: ... swapkernel.o: ... all: kernel Current order and names: ${FULLKERNEL}: ... swapkernel.o: ... all: kernel Correct order and names: all: ${KERNEL} swap${KERNEL}.o: ... # not in logical order, but that doesn't matter ${FULLKERNEL}: ... Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message