mirror of
https://github.com/opnsense/src.git
synced 2026-07-13 19:20:56 -04:00
Add missing dep patterns for .pieo
While adding sanitizer support, I noticed that all other extensions were
handled but .pieo was missing.
Reviewed By: emaste, imp
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D31040
(cherry picked from commit 2d78130185)
This commit is contained in:
parent
b0188ea200
commit
cbbdacf4dc
2 changed files with 6 additions and 2 deletions
|
|
@ -170,10 +170,13 @@ ${_D}.o: ${_DSRC} ${OBJS:S/^${_D}.o$//}
|
|||
@rm -f ${.TARGET}
|
||||
${DTRACE} ${DTRACEFLAGS} -G -o ${.TARGET} -s ${.ALLSRC:N*.h}
|
||||
.if defined(LIB)
|
||||
CLEANFILES+= ${_D}.pico ${_D}.po ${_D}.nossppico
|
||||
CLEANFILES+= ${_D}.pico ${_D}.pieo ${_D}.po ${_D}.nossppico
|
||||
${_D}.pico: ${_DSRC} ${SOBJS:S/^${_D}.pico$//}
|
||||
@rm -f ${.TARGET}
|
||||
${DTRACE} ${DTRACEFLAGS} -G -o ${.TARGET} -s ${.ALLSRC:N*.h}
|
||||
${_D}.pieo: ${_DSRC} ${OBJS:S/^${_D}.pieo$//}
|
||||
@rm -f ${.TARGET}
|
||||
${DTRACE} ${DTRACEFLAGS} -G -o ${.TARGET} -s ${.ALLSRC:N*.h}
|
||||
${_D}.po: ${_DSRC} ${POBJS:S/^${_D}.po$//}
|
||||
@rm -f ${.TARGET}
|
||||
${DTRACE} ${DTRACEFLAGS} -G -o ${.TARGET} -s ${.ALLSRC:N*.h}
|
||||
|
|
|
|||
|
|
@ -9,7 +9,8 @@ UPDATE_DEPENDFILE= no
|
|||
.endif
|
||||
|
||||
NOSSPPICO?= .nossppico
|
||||
OBJ_EXTENSIONS+= ${NOSSPPICO}
|
||||
PIEO?= .pieo
|
||||
OBJ_EXTENSIONS+= ${NOSSPPICO} ${PIEO}
|
||||
|
||||
CFLAGS+= ${CFLAGS_LAST}
|
||||
CXXFLAGS+= ${CXXFLAGS_LAST}
|
||||
|
|
|
|||
Loading…
Reference in a new issue