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

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

Diff for /src/sys/rump/Makefile.rump between version 1.46 and 1.47

version 1.46, 2010/01/31 00:38:36 version 1.47, 2010/02/03 21:11:24
Line 100  __archivebuild: .USE
Line 100  __archivebuild: .USE
 .if !defined(RUMP_SYMREN)  .if !defined(RUMP_SYMREN)
         ${AR} ${_ARRANFL} ${.TARGET}          ${AR} ${_ARRANFL} ${.TARGET}
 .endif  .endif
   
   # If IOCONFIG is defined, autocreate ioconf.c and locators.h.
   # This is useful mainly for devices.
   .if !empty(IOCONFIG)
   ioconf.c: ${IOCONFIG}
           ${TOOL_CONFIG} -b ${.OBJDIR} -s ${RUMPTOP}/.. ${IOCONFIG}
           # config doesn't change the files if they're unchanged.  however,
           # here we want to satisfy our make dependency, so force a
           # timestamp update
           touch ioconf.c locators.h
   
   CLEANFILES+= ioconf.c locators.h
   DPSRCS+= ioconf.c locators.h
   .endif
   
 .-include "${NETBSDSRCDIR}/sys/arch/${MACHINE_CPU}/include/Makefile.inc"  .-include "${NETBSDSRCDIR}/sys/arch/${MACHINE_CPU}/include/Makefile.inc"
 .-include "${NETBSDSRCDIR}/sys/arch/${MACHINE}/include/Makefile.inc"  .-include "${NETBSDSRCDIR}/sys/arch/${MACHINE}/include/Makefile.inc"

Legend:
Removed from v.1.46  
changed lines
  Added in v.1.47

CVSweb <webmaster@jp.NetBSD.org>