Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/conf Comment.



details:   https://anonhg.NetBSD.org/src/rev/78244c493332
branches:  trunk
changeset: 340250:78244c493332
user:      uebayasi <uebayasi%NetBSD.org@localhost>
date:      Sat Aug 29 05:03:36 2015 +0000

description:
Comment.

diffstat:

 sys/conf/Makefile.kern.inc |  35 ++++++++++++++++++++++++++++++++++-
 1 files changed, 34 insertions(+), 1 deletions(-)

diffs (96 lines):

diff -r 778c5b0504a0 -r 78244c493332 sys/conf/Makefile.kern.inc
--- a/sys/conf/Makefile.kern.inc        Sat Aug 29 05:02:43 2015 +0000
+++ b/sys/conf/Makefile.kern.inc        Sat Aug 29 05:03:36 2015 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.kern.inc,v 1.199 2015/08/29 05:02:43 uebayasi Exp $
+#      $NetBSD: Makefile.kern.inc,v 1.200 2015/08/29 05:03:36 uebayasi Exp $
 #
 # This file contains common `MI' targets and definitions and it is included
 # at the bottom of each `MD' ${MACHINE}/conf/Makefile.${MACHINE}.
@@ -379,6 +379,11 @@
 ## EXTRA_CLEAN.  Some ports may want different settings for
 ## KERNLINTFLAGS, MKDEP_CFLAGS, or MKDEP_AFLAGS.
 ##
+
+##
+## clean
+##
+
 .if !target(__CLEANKERNEL)
 __CLEANKERNEL: .USE
        ${_MKMSG} "${.TARGET}ing the kernel objects"
@@ -403,6 +408,10 @@
 depend: .depend
 dependall: depend .WAIT all
 
+##
+## depend
+##
+
 .if !target(.depend)
 MKDEP_AFLAGS?= ${AFLAGS}
 MKDEP_CFLAGS?= ${CFLAGS}
@@ -456,6 +465,10 @@
        echo "${.ALLSRC}" | ${MKDEP} -D
 .endif
 
+##
+## lint
+##
+
 .if !target(lint)
 ALLSFILES?=    ${MD_SFILES} ${SFILES}
 LINTSTUBS?=    ${ALLSFILES:T:R:C/^.*$/LintStub_&.c/g}
@@ -494,6 +507,10 @@
 # to be loaded directly by the firmware), so this can be overriden by them.
 KERNIMAGES?=   netbsd
 
+##
+## install
+##
+
 .if !target(install)
 # The install target can be redefined by putting a
 # install-kernel-${MACHINE_NAME} target into /etc/mk.conf
@@ -510,11 +527,19 @@
 .endif
 .endif
 
+##
+## tags
+##
+
 .if !target(tags)
 tags:
        @echo "see $S/kern/Makefile for tags"
 .endif
 
+##
+## cscope
+##
+
 EXTRA_CLEAN+= cscope.out cscope.tmp
 .if !target(cscope.out)
 cscope.out: Makefile depend
@@ -559,6 +584,10 @@
 
 .endif
 
+##
+## .gdbinit
+##
+
 .include "${S}/gdbscripts/Makefile.inc"
 
 EXTRA_CLEAN+= .gdbinit
@@ -574,6 +603,10 @@
 .endfor
 .endif
 
+##
+## the kernel
+##
+
 # The following files use alloca(3) or variable array allocations.
 # Their full name is noted as documentation.
 VARSTACK=kern/uipc_socket.c miscfs/genfs/genfs_vnops.c \



Home | Main Index | Thread Index | Old Index