2001-05-08 07:19:51 +04:00
|
|
|
# $NetBSD: bsd.inc.mk,v 1.17 2001/05/08 03:19:52 sommerfeld Exp $
|
1997-05-07 00:54:31 +04:00
|
|
|
|
1997-06-01 01:21:13 +04:00
|
|
|
.PHONY: incinstall
|
|
|
|
includes: ${INCS} incinstall
|
1997-03-25 00:54:12 +03:00
|
|
|
|
1997-05-07 19:53:28 +04:00
|
|
|
.if defined(INCS)
|
2000-06-06 09:40:47 +04:00
|
|
|
incinstall:: ${INCS:@I@${DESTDIR}${INCSDIR}/$I@}
|
2000-06-06 13:22:00 +04:00
|
|
|
.PRECIOUS: ${INCS:@I@${DESTDIR}${INCSDIR}/$I@}
|
1997-06-03 20:00:30 +04:00
|
|
|
.if !defined(UPDATE)
|
2000-06-06 09:40:47 +04:00
|
|
|
.PHONY: ${INCS:@I@${DESTDIR}${INCSDIR}/$I@}
|
1997-06-03 20:00:30 +04:00
|
|
|
.endif
|
2000-06-06 09:40:47 +04:00
|
|
|
|
2000-06-06 13:53:29 +04:00
|
|
|
__incinstall: .USE
|
1997-03-25 00:54:12 +03:00
|
|
|
@cmp -s ${.ALLSRC} ${.TARGET} > /dev/null 2>&1 || \
|
1999-08-21 10:17:45 +04:00
|
|
|
(echo "${INSTALL} ${RENAME} ${PRESERVE} ${INSTPRIV} -c \
|
|
|
|
-o ${BINOWN} -g ${BINGRP} -m ${NONBINMODE} ${.ALLSRC} \
|
|
|
|
${.TARGET}" && \
|
|
|
|
${INSTALL} ${RENAME} ${PRESERVE} ${INSTPRIV} -c -o ${BINOWN} \
|
|
|
|
-g ${BINGRP} -m ${NONBINMODE} ${.ALLSRC} ${.TARGET})
|
2000-06-06 13:53:29 +04:00
|
|
|
|
2001-05-08 07:19:51 +04:00
|
|
|
.for I in ${INCS:O:u}
|
2000-06-06 13:53:29 +04:00
|
|
|
${DESTDIR}${INCSDIR}/$I: $I __incinstall
|
1997-03-25 00:54:12 +03:00
|
|
|
.endfor
|
1997-05-07 19:53:28 +04:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !target(incinstall)
|
|
|
|
incinstall::
|
1997-03-25 00:54:12 +03:00
|
|
|
.endif
|