1# Various tools used by the FreeBSD make installworld / distrib-dirs / 2# distribution / installkernel targets. Also called "bootstrap tools" 3# historically, however that name seemed to be ambiguous, as those tools 4# merely help distributing the OS build artefacts into staging / production 5# area. 6# 7# Very tiny subset of "itools", if you are old enough to know what it is. 8# 9# Please keep the list short, this file may and will be included from 10# many places within the source tree. Rule of thumb: if the above mentioned 11# targets survive with MYTOOL_CMD=false, then MYTOOL_CMD probably 12# does not belong here. Stick it somewhere else, thank you very much! 13# 14 15.if !target(__<src.tools.mk>__) 16 17INSTALL_CMD?= install 18MTREE_CMD?= mtree 19PWD_MKDB_CMD?= pwd_mkdb 20SERVICES_MKDB_CMD?= services_mkdb 21CAP_MKDB_CMD?= cap_mkdb 22TIC_CMD?= tic 23 24__<src.tools.mk>__: 25.endif # !target(__<tools>__) 26