1# $FreeBSD$ 2 3.PATH: ${.CURDIR}/../../include 4 5LIB= egacy 6SRC= 7INCSGROUPS= INCS SYSINCS CASPERINC 8INCS= 9 10SYSINCSDIR= ${INCLUDEDIR}/sys 11CASPERINCDIR= ${INCLUDEDIR}/casper 12 13BOOTSTRAPPING?= 0 14 15_WITH_PWCACHEDB!= grep -c pwcache_groupdb /usr/include/grp.h || true 16.if ${_WITH_PWCACHEDB} == 0 17.PATH: ${.CURDIR}/../../contrib/libc-pwcache 18CFLAGS+= -I${.CURDIR}/../../contrib/libc-pwcache \ 19 -I${.CURDIR}/../../lib/libc/include 20SRCS+= pwcache.c 21.endif 22 23_WITH_STRSVIS!= grep -c strsvis /usr/include/vis.h || true 24.if ${_WITH_STRSVIS} == 0 25.PATH: ${.CURDIR}/../../contrib/libc-vis 26SRCS+= vis.c 27CFLAGS+= -I${.CURDIR}/../../contrib/libc-vis \ 28 -I${.CURDIR}/../../lib/libc/include 29.endif 30 31_WITH_REALLOCARRAY!= grep -c reallocarray /usr/include/stdlib.h || true 32.if ${_WITH_REALLOCARRAY} == 0 33.PATH: ${.CURDIR}/../../lib/libc/stdlib 34INCS+= stdlib.h 35SRCS+= reallocarray.c 36CFLAGS+= -I${.CURDIR}/../../lib/libc/include 37.endif 38 39_WITH_UTIMENS!= grep -c utimensat /usr/include/sys/stat.h || true 40.if ${_WITH_UTIMENS} == 0 41SYSINCS+= stat.h 42SRCS+= futimens.c utimensat.c 43.endif 44 45_WITH_EXPLICIT_BZERO!= grep -c explicit_bzero /usr/include/strings.h || true 46.if ${_WITH_EXPLICIT_BZERO} == 0 47.PATH: ${SRCTOP}/sys/libkern 48INCS+= strings.h 49SRCS+= explicit_bzero.c 50.endif 51 52.if exists(/usr/include/capsicum_helpers.h) 53_WITH_CAPH_ENTER!= grep -c caph_enter /usr/include/capsicum_helpers.h || true 54.endif 55.if !defined(_WITH_CAPH_ENTER) || ${_WITH_CAPH_ENTER} == 0 56.PATH: ${SRCTOP}/lib/libcapsicum 57INCS+= capsicum_helpers.h 58.PATH: ${SRCTOP}/lib/libcasper/libcasper 59INCS+= libcasper.h 60.endif 61 62CASPERINC+= ${SRCTOP}/lib/libcasper/services/cap_fileargs/cap_fileargs.h 63 64.if empty(SRCS) 65SRCS= dummy.c 66.endif 67 68.if defined(CROSS_BUILD_TESTING) 69SUBDIR= cross-build 70.endif 71 72# Needed to build config (since it uses libnv) 73SYSINCS+= ${SRCTOP}/sys/sys/nv.h ${SRCTOP}/sys/sys/cnv.h \ 74 ${SRCTOP}/sys/sys/dnv.h 75 76# We want to run the build with only ${WORLDTMP} in $PATH to ensure we don't 77# accidentally run tools that are incompatible but happen to be in $PATH. 78# This is especially important when building on Linux/MacOS where many of the 79# programs used during the build accept different flags or generate different 80# output. On those platforms we only symlink the tools known to be compatible 81# (e.g. basic utilities such as mkdir) into ${WORLDTMP} and build all others 82# from the FreeBSD sources during the bootstrap-tools stage. 83 84# basic commands: It is fine to use the host version for all of these even on 85# Linux/MacOS since we only use flags that are supported by all of them. 86_host_tools_to_symlink= basename bzip2 bunzip2 chmod chown cmp comm cp date \ 87 dirname echo env false find fmt gzip gunzip head hostname id ln ls \ 88 mkdir mv nice patch rm realpath sh sleep stat tee touch tr true uname \ 89 uniq wc which 90 91# We also need a symlink to the absolute path to the make binary used for 92# the toplevel makefile. This is not necessarily the same as `which make` 93# since e.g. on Linux and MacOS that will be GNU make. 94_make_abs!= which "${MAKE}" 95_host_abs_tools_to_symlink= ${_make_abs}:make ${_make_abs}:bmake 96 97host-symlinks: 98 @echo "Linking host tools into ${DESTDIR}/bin" 99.for _tool in ${_host_tools_to_symlink} 100 @if [ ! -e "${DESTDIR}/bin/${_tool}" ]; then \ 101 source_path=`which ${_tool}`; \ 102 if [ ! -e "$${source_path}" ] ; then \ 103 echo "Cannot find host tool '${_tool}'"; false; \ 104 fi; \ 105 ln -sfnv "$${source_path}" "${DESTDIR}/bin/${_tool}"; \ 106 fi 107.endfor 108.for _tool in ${_host_abs_tools_to_symlink} 109 @source_path="${_tool:S/:/ /:[1]}"; \ 110 target_path="${DESTDIR}/bin/${_tool:S/:/ /:[2]}"; \ 111 if [ ! -e "$${target_path}" ] ; then \ 112 if [ ! -e "$${source_path}" ] ; then \ 113 echo "Host tool '${src_path}' is missing"; false; \ 114 fi; \ 115 ln -sfnv "$${source_path}" "$${target_path}"; \ 116 fi 117.endfor 118 119# Create all the directories that are needed during the legacy, bootstrap-tools 120# and cross-tools stages. We do this here using mkdir since mtree may not exist 121# yet (this happens if we are crossbuilding from Linux/Mac). 122installdirs: 123.for _dir in bin usr/lib usr/include usr/include/casper lib/geom lib/casper 124 mkdir -p "${DESTDIR}/${_dir}" 125.endfor 126# Link usr/bin, sbin, and usr/sbin to bin so that it doesn't matter whether a 127# bootstrap tool was added to WORLTMP with a symlink or by building it in the 128# bootstrap-tools phase. We could also overrride BINDIR when building bootstrap 129# tools but adding the symlinks is easier and means all tools are also 130# in the directory that they are installed to normally. 131 132.for _dir in sbin usr/sbin usr/bin 133# delete existing directories from before r340157 134 @if [ ! -L ${DESTDIR}/${_dir} ]; then \ 135 echo "removing old non-symlink ${DESTDIR}/${_dir}"; \ 136 rm -rf "${DESTDIR}/${_dir}"; \ 137 fi 138.endfor 139 ln -sfn bin ${DESTDIR}/sbin 140 ln -sfn ../bin ${DESTDIR}/usr/bin 141 ln -sfn ../bin ${DESTDIR}/usr/sbin 142.for _group in ${INCSGROUPS:NINCS} 143 mkdir -p "${DESTDIR}/${${_group}DIR}" 144.endfor 145 146.include <bsd.lib.mk> 147