1# $FreeBSD$ 2 3.if !target(__<bsd.init.mk>__) 4.error bsd.links.mk cannot be included directly. 5.endif 6 7afterinstall: _installlinks 8.ORDER: realinstall _installlinks 9_installlinks: 10.for s t in ${LINKS} 11 ${INSTALL_LINK} ${DESTDIR}${s} ${DESTDIR}${t} 12.endfor 13.for s t in ${SYMLINKS} 14 ${INSTALL_SYMLINK} ${s} ${DESTDIR}${t} 15.endfor 16