svn commit: r269324 - stable/10/share/mk

Rui Paulo rpaulo at FreeBSD.org
Thu Jul 31 07:28:00 UTC 2014


Author: rpaulo
Date: Thu Jul 31 07:27:59 2014
New Revision: 269324
URL: http://svnweb.freebsd.org/changeset/base/269324

Log:
  MFC r268300:
  
   bsd.dep.mk: add support for generating DTrace header files from .d
   files.

Modified:
  stable/10/share/mk/bsd.dep.mk
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/share/mk/bsd.dep.mk
==============================================================================
--- stable/10/share/mk/bsd.dep.mk	Thu Jul 31 05:56:15 2014	(r269323)
+++ stable/10/share/mk/bsd.dep.mk	Thu Jul 31 07:27:59 2014	(r269324)
@@ -78,6 +78,7 @@ ${_S:R}.o: ${_S}
 .endfor
 .endif
 
+# Lexical analyzers
 .for _LSRC in ${SRCS:M*.l:N*/*}
 .for _LC in ${_LSRC:R}.c
 ${_LC}: ${_LSRC}
@@ -90,6 +91,7 @@ CLEANFILES+= ${_LC}
 .endfor
 .endfor
 
+# Yacc grammars
 .for _YSRC in ${SRCS:M*.y:N*/*}
 .for _YC in ${_YSRC:R}.c
 SRCS:=	${SRCS:S/${_YSRC}/${_YC}/}
@@ -117,6 +119,16 @@ ${_YC:R}.o: ${_YC}
 .endif
 .endfor
 .endfor
+
+# DTrace probe definitions
+.for _DSRC in ${SRCS:M*.d:N*/*}
+.for _DH in ${_DSRC:R}.h
+${_DH}: ${_DSRC}
+	${DTRACE} -xnolibs -h -s ${.ALLSRC} 
+SRCS:=	${SRCS:S/${_DSRC}/${_DH}/}
+CLEANFILES+= ${_DH}
+.endfor
+.endfor
 .endif
 
 .if !target(depend)


More information about the svn-src-stable-10 mailing list