Deleted Added
full compact
bsd.incs.mk (156813) bsd.incs.mk (245752)
1# $FreeBSD: head/share/mk/bsd.incs.mk 156813 2006-03-17 18:54:44Z ru $
1# $FreeBSD: head/share/mk/bsd.incs.mk 245752 2013-01-21 22:40:39Z brooks $
2
3.if !target(__<bsd.init.mk>__)
4.error bsd.incs.mk cannot be included directly.
5.endif
6
7.if !defined(NO_INCS) && ${MK_TOOLCHAIN} != "no"
8
9INCSGROUPS?= INCS

--- 58 unchanged lines hidden (view full) ---

68installincludes:
69 @set ${INCSLINKS}; \
70 while test $$# -ge 2; do \
71 l=$$1; \
72 shift; \
73 t=${DESTDIR}$$1; \
74 shift; \
75 ${ECHO} $$t -\> $$l; \
2
3.if !target(__<bsd.init.mk>__)
4.error bsd.incs.mk cannot be included directly.
5.endif
6
7.if !defined(NO_INCS) && ${MK_TOOLCHAIN} != "no"
8
9INCSGROUPS?= INCS

--- 58 unchanged lines hidden (view full) ---

68installincludes:
69 @set ${INCSLINKS}; \
70 while test $$# -ge 2; do \
71 l=$$1; \
72 shift; \
73 t=${DESTDIR}$$1; \
74 shift; \
75 ${ECHO} $$t -\> $$l; \
76 ln -fs $$l $$t; \
76 ${INSTALL_SYMLINK} $$l $$t; \
77 done; true
78.endif
79.endif # !target(installincludes)
80
81realinstall: installincludes
82.ORDER: beforeinstall installincludes
83
84.endif # !defined(NO_INCS) && ${MK_TOOLCHAIN} != "no"
77 done; true
78.endif
79.endif # !target(installincludes)
80
81realinstall: installincludes
82.ORDER: beforeinstall installincludes
83
84.endif # !defined(NO_INCS) && ${MK_TOOLCHAIN} != "no"