1# $FreeBSD$ 2# Originally from $NetBSD: Makefile,v 1.21 1997/10/26 22:08:38 lukem Exp $ 3# 4# Notes: 5# - We don't use the libc strerror/sys_errlist because the string table is 6# quite large. 7# 8 9.include <bsd.init.mk> 10 11LIBSA_CPUARCH?=${MACHINE_CPUARCH} 12 13LIB?= sa 14 15# standalone components and stuff we have modified locally 16SRCS+= gzguts.h zutil.h __main.c abort.c assert.c bcd.c environment.c \ 17 getopt.c gets.c globals.c \ 18 hexdump.c pager.c panic.c printf.c strdup.c strerror.c \ 19 random.c sbrk.c tslog.c twiddle.c zalloc.c zalloc_malloc.c 20 21# private (pruned) versions of libc string functions 22SRCS+= strcasecmp.c 23 24.PATH: ${LIBCSRC}/net 25 26SRCS+= ntoh.c 27 28# string functions from libc 29.PATH: ${LIBCSRC}/string 30SRCS+= bcmp.c bcopy.c bzero.c ffs.c fls.c \ 31 memccpy.c memchr.c memcmp.c memcpy.c memmove.c memset.c \ 32 strcat.c strchr.c strchrnul.c strcmp.c strcpy.c stpcpy.c stpncpy.c \ 33 strcspn.c strlcat.c strlcpy.c strlen.c strncat.c strncmp.c strncpy.c \ 34 strnlen.c strpbrk.c strrchr.c strsep.c strspn.c strstr.c strtok.c swab.c 35 36# stdlib functions from libc 37.PATH: ${LIBCSRC}/stdlib 38SRCS+= abs.c strtol.c strtoll.c strtoul.c strtoull.c 39 40# common boot code 41.PATH: ${SYSDIR}/kern 42SRCS+= subr_boot.c 43 44.if ${MACHINE_CPUARCH} == "arm" 45.PATH: ${LIBCSRC}/arm/gen 46 47# Do not generate movt/movw, because the relocation fixup for them does not 48# translate to the -Bsymbolic -pie format required by self_reloc() in loader(8). 49# Also, the fpu is not available in a standalone environment. 50CFLAGS.clang+= -mno-movt 51CFLAGS.clang+= -mfpu=none 52 53.PATH: ${SRCTOP}/contrib/llvm-project/compiler-rt/lib/builtins/arm/ 54SRCS+= aeabi_idivmod.S aeabi_ldivmod.S aeabi_uidivmod.S aeabi_uldivmod.S 55SRCS+= aeabi_memcmp.S aeabi_memcpy.S aeabi_memmove.S aeabi_memset.S 56.endif 57 58.if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "riscv" 59.PATH: ${LIBCSRC}/${MACHINE_CPUARCH}/gen 60.endif 61 62# Compiler support functions 63.PATH: ${SRCTOP}/contrib/llvm-project/compiler-rt/lib/builtins/ 64# __clzsi2 and ctzsi2 for various builtin functions 65SRCS+= clzsi2.c ctzsi2.c 66# Divide and modulus functions called by the compiler 67SRCS+= divmoddi4.c divmodsi4.c divdi3.c divsi3.c moddi3.c modsi3.c 68SRCS+= udivmoddi4.c udivmodsi4.c udivdi3.c udivsi3.c umoddi3.c umodsi3.c 69SRCS+= ashldi3.c ashrdi3.c lshrdi3.c 70 71.if ${MACHINE_CPUARCH:Namd64:Ni386} == "" 72.PATH: ${SASRC}/x86 73SRCS+= hypervisor.c 74.endif 75 76.if ${MACHINE_CPUARCH} == "powerpc" 77SRCS+= syncicache.c 78.endif 79 80# uuid functions from libc 81.PATH: ${LIBCSRC}/uuid 82SRCS+= uuid_create_nil.c uuid_equal.c uuid_from_string.c uuid_is_nil.c uuid_to_string.c 83 84# _setjmp/_longjmp 85.PATH: ${SASRC}/${LIBSA_CPUARCH} 86SRCS+= _setjmp.S 87 88# decompression functionality from libbz2 89# NOTE: to actually test this functionality after libbz2 upgrade compile 90# loader(8) with LOADER_BZIP2_SUPPORT defined 91.PATH: ${SRCTOP}/contrib/bzip2 92CFLAGS+= -DBZ_NO_STDIO -DBZ_NO_COMPRESS 93 94SRCS+=bzlib.c crctable.c decompress.c huffman.c randtable.c 95 96# decompression functionality from zlib 97.PATH: ${SRCTOP}/sys/contrib/zlib 98CFLAGS+=-DHAVE_MEMCPY -I${SRCTOP}/sys/contrib/zlib 99SRCS+= adler32.c crc32.c 100SRCS+= infback.c inffast.c inflate.c inftrees.c zutil.c 101 102# lz4 decompression functionality 103.PATH: ${SRCTOP}/sys/cddl/contrib/opensolaris/common/lz4 104SRCS+= lz4.c 105CFLAGS.lz4.c+= -I${SRCTOP}/sys/cddl/contrib/opensolaris/common/lz4 106 107# Create a subset of includes that are safe, as well as adjusting those that aren't 108# The lists may drive people nuts, but they are explicitly opt-in 109FAKE_DIRS=xlocale arpa 110SAFE_INCS=a.out.h assert.h elf.h limits.h nlist.h setjmp.h stddef.h stdbool.h string.h strings.h time.h unistd.h uuid.h 111STAND_H_INC=ctype.h fcntl.h signal.h stdio.h stdlib.h 112OTHER_INC=stdarg.h errno.h stdint.h 113 114beforedepend: 115 mkdir -p ${FAKE_DIRS}; \ 116 for i in ${SAFE_INCS}; do \ 117 ln -sf ${SRCTOP}/include/$$i $$i; \ 118 done; \ 119 ln -sf ${SYSDIR}/${MACHINE}/include/stdarg.h stdarg.h; \ 120 ln -sf ${SYSDIR}/sys/errno.h errno.h; \ 121 ln -sf ${SYSDIR}/sys/stdint.h stdint.h; \ 122 ln -sf ${SRCTOP}/include/arpa/inet.h arpa/inet.h; \ 123 ln -sf ${SRCTOP}/include/arpa/tftp.h arpa/tftp.h; \ 124 for i in _time.h _strings.h _string.h; do \ 125 [ -f xlocale/$$i ] || :> xlocale/$$i; \ 126 done; \ 127 for i in ${STAND_H_INC}; do \ 128 ln -sf ${SASRC}/stand.h $$i; \ 129 done 130CLEANDIRS+=${FAKE_DIRS} 131CLEANFILES+= ${SAFE_INCS} ${STAND_H_INC} ${OTHER_INC} 132 133# io routines 134SRCS+= closeall.c dev.c ioctl.c nullfs.c stat.c mount.c \ 135 fstat.c close.c lseek.c open.c read.c write.c readdir.c 136 137# SMBios routines 138SRCS+= smbios.c 139.if !defined(BOOT_HIDE_SERIAL_NUMBERS) 140# Export serial numbers, UUID, and asset tag from loader. 141CFLAGS.smbios.c+= -DSMBIOS_SERIAL_NUMBERS 142.if defined(BOOT_LITTLE_ENDIAN_UUID) 143# Use little-endian UUID format as defined in SMBIOS 2.6. 144CFLAGS.smbios.c+= -DSMBIOS_LITTLE_ENDIAN_UUID 145.elif defined(BOOT_NETWORK_ENDIAN_UUID) 146# Use network-endian UUID format for backward compatibility. 147CFLAGS.smbios.c+= -DSMBIOS_NETWORK_ENDIAN_UUID 148.endif 149.endif 150 151# network routines 152SRCS+= arp.c ether.c ip.c inet_ntoa.c in_cksum.c net.c udp.c netif.c rpc.c 153 154# network info services: 155SRCS+= bootp.c rarp.c bootparam.c 156 157# boot filesystems 158SRCS+= ufs.c nfs.c cd9660.c tftp.c gzipfs.c bzipfs.c 159SRCS+= dosfs.c ext2fs.c 160SRCS+= splitfs.c 161SRCS+= pkgfs.c 162 163# Time support 164SRCS+= time.c 165 166# kernel ufs support 167.PATH: ${SRCTOP}/sys/ufs/ffs 168SRCS+=ffs_subr.c ffs_tables.c 169 170CFLAGS.bzipfs.c+= -I${SRCTOP}/contrib/bzip2 171 172# explicit_bzero and calculate_crc32c 173.PATH: ${SYSDIR}/libkern 174SRCS+= explicit_bzero.c crc32_libkern.c 175 176# Maybe GELI 177.if ${MK_LOADER_GELI} == "yes" 178.include "${SASRC}/geli/Makefile.inc" 179.endif 180 181.if ${MK_LOADER_VERIEXEC} == "yes" && ${MK_BEARSSL} == "yes" 182.include "${SRCTOP}/lib/libbearssl/Makefile.libsa.inc" 183.include "${SRCTOP}/lib/libsecureboot/Makefile.libsa.inc" 184.endif 185 186# Maybe ZFS 187.if ${MK_LOADER_ZFS} == "yes" 188.include "${SASRC}/zfs/Makefile.inc" 189.endif 190 191.include <bsd.lib.mk> 192