1998-09-29 11:47:51 +00:00
|
|
|
# $NetBSD: bsd.inc.mk,v 1.11 1998/09/29 11:47:51 christos Exp $
|
1997-05-06 20:54:31 +00:00
|
|
|
|
1997-05-31 21:21:13 +00:00
|
|
|
.PHONY: incinstall
|
|
|
|
includes: ${INCS} incinstall
|
1997-03-24 21:54:12 +00:00
|
|
|
|
1997-05-07 15:53:28 +00:00
|
|
|
.if defined(INCS)
|
1997-03-24 21:54:12 +00:00
|
|
|
.for I in ${INCS}
|
1997-05-31 21:21:13 +00:00
|
|
|
incinstall:: ${DESTDIR}${INCSDIR}/$I
|
1997-03-24 21:54:12 +00:00
|
|
|
|
1997-05-06 21:29:33 +00:00
|
|
|
.PRECIOUS: ${DESTDIR}${INCSDIR}/$I
|
1997-06-03 16:00:30 +00:00
|
|
|
.if !defined(UPDATE)
|
|
|
|
.PHONY: ${DESTDIR}${INCSDIR}/$I
|
|
|
|
.endif
|
1997-03-24 21:54:12 +00:00
|
|
|
${DESTDIR}${INCSDIR}/$I: $I
|
|
|
|
@cmp -s ${.ALLSRC} ${.TARGET} > /dev/null 2>&1 || \
|
1998-09-29 11:47:51 +00:00
|
|
|
(echo "${INSTALL} ${PRESERVE} -c -o ${BINOWN} -g ${BINGRP} \
|
|
|
|
-m ${NONBINMODE} ${.ALLSRC} ${.TARGET}" && \
|
|
|
|
${INSTALL} ${PRESERVE} -c -o ${BINOWN} -g ${BINGRP} \
|
|
|
|
-m ${NONBINMODE} ${.ALLSRC} ${.TARGET})
|
1997-03-24 21:54:12 +00:00
|
|
|
.endfor
|
1997-05-07 15:53:28 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !target(incinstall)
|
|
|
|
incinstall::
|
1997-03-24 21:54:12 +00:00
|
|
|
.endif
|