[BACK]Return to Makefile.kern.inc CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / conf

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/conf/Makefile.kern.inc between version 1.15 and 1.16

version 1.15, 2002/05/29 16:12:54 version 1.16, 2002/06/17 20:31:26
Line 27  MKDEP?=  mkdep
Line 27  MKDEP?=  mkdep
 STRIP?=         strip  STRIP?=         strip
 OBJCOPY?=       objcopy  OBJCOPY?=       objcopy
 OBJDUMP?=       objdump  OBJDUMP?=       objdump
   CSCOPE?=        cscope
   MKID?=          mkid
 .MAKEOVERRIDES+=USETOOLS        # make sure proper value is propagated  .MAKEOVERRIDES+=USETOOLS        # make sure proper value is propagated
   
 ##  ##
Line 200  uipc_proto.o vfs_conf.o: Makefile
Line 202  uipc_proto.o vfs_conf.o: Makefile
 assym.h machdep.o: Makefile  assym.h machdep.o: Makefile
   
 ##  ##
 ## (7) misc targets: install, clean(dir), depend(all), lint, links, tags  ## (7) misc targets: install, clean(dir), depend(all), lint, links, tags,
   ##                   cscope, mkid
 ##  ##
 ## Any ports that have other stuff to be cleaned up should fill in  ## Any ports that have other stuff to be cleaned up should fill in
 ## EXTRA_CLEAN.  Some ports may want different settings for  ## EXTRA_CLEAN.  Some ports may want different settings for
Line 281  tags:
Line 284  tags:
         @echo "see $S/kern/Makefile for tags"          @echo "see $S/kern/Makefile for tags"
 .endif  .endif
   
   EXTRA_CLEAN+= cscope.out
   .if !target(cscope.out)
   cscope.out: Makefile
           @echo Building cscope.out source database
           @echo ${SRCS} | ${CSCOPE} -k -i - -b \
                   `echo ${INCLUDES} | sed s/-nostdinc//`
   #       cscope doesn't write cscope.out if it's uptodate, so ensure
   #       make doesn't keep calling cscope when not needed.
           @touch cscope.out
   .endif
   
   .if !target(cscope)
   cscope: cscope.out
           @${CSCOPE} -d
   .endif
   
   EXTRA_CLEAN+= ID
   .if !target(mkid)
   .PHONY: mkid
   mkid: ID
   
   ID: Makefile
           @echo Building mkid database
           @${MKID} ${SRCS}
   .endif
   
 ##  ##
 ## the end  ## the end
 ##  ##

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16

CVSweb <webmaster@jp.NetBSD.org>