]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - stand/libsa/Makefile
libsa: Pull in strnlen from libc
[FreeBSD/FreeBSD.git] / stand / libsa / Makefile
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 MK_PROFILE=     no
10 MK_SSP=         no
11
12 .include <bsd.init.mk>
13
14 INTERNALLIB=
15 LIBSA_CPUARCH?=${MACHINE_CPUARCH}
16 LIBC_SRC=       ${SRCTOP}/lib/libc
17
18 LIB?=           sa
19 NO_PIC=
20
21 # standalone components and stuff we have modified locally
22 SRCS+=  gzguts.h zutil.h __main.c assert.c bcd.c environment.c getopt.c gets.c \
23         globals.c pager.c panic.c printf.c strdup.c strerror.c strtol.c strtoul.c \
24         random.c sbrk.c twiddle.c zalloc.c zalloc_malloc.c
25
26 # private (pruned) versions of libc string functions
27 SRCS+=  strcasecmp.c
28
29 .PATH: ${LIBC_SRC}/net
30
31 SRCS+= ntoh.c
32
33 # string functions from libc
34 .PATH: ${LIBC_SRC}/string
35 SRCS+=  bcmp.c bcopy.c bzero.c ffs.c fls.c \
36         memccpy.c memchr.c memcmp.c memcpy.c memmove.c memset.c \
37         qdivrem.c strcat.c strchr.c strcmp.c strcpy.c stpcpy.c stpncpy.c \
38         strcspn.c strlcat.c strlcpy.c strlen.c strncat.c strncmp.c strncpy.c \
39         strnlen.c strpbrk.c strrchr.c strsep.c strspn.c strstr.c strtok.c swab.c
40 .if ${MACHINE_CPUARCH} == "arm"
41 .PATH: ${LIBC_SRC}/arm/gen
42
43 # Do not generate movt/movw, because the relocation fixup for them does not
44 # translate to the -Bsymbolic -pie format required by self_reloc() in loader(8).
45 # Also, the fpu is not available in a standalone environment.
46 .if ${COMPILER_VERSION} < 30800
47 CFLAGS.clang+=  -mllvm -arm-use-movt=0
48 .else
49 CFLAGS.clang+=  -mno-movt
50 .endif
51 CFLAGS.clang+=  -mfpu=none
52
53 # Compiler support functions
54 .PATH: ${SRCTOP}/contrib/compiler-rt/lib/builtins/
55 # __clzsi2 and ctzsi2 for various builtin functions
56 SRCS+=  clzsi2.c ctzsi2.c
57 # Divide and modulus functions called by the compiler
58 SRCS+=   divmoddi4.c  divmodsi4.c  divdi3.c  divsi3.c  moddi3.c  modsi3.c
59 SRCS+=  udivmoddi4.c udivmodsi4.c udivdi3.c udivsi3.c umoddi3.c umodsi3.c
60
61 .PATH: ${SRCTOP}/contrib/compiler-rt/lib/builtins/arm/
62 SRCS+=  aeabi_idivmod.S aeabi_ldivmod.S aeabi_uidivmod.S aeabi_uldivmod.S
63 SRCS+=  aeabi_memcmp.S aeabi_memcpy.S aeabi_memmove.S aeabi_memset.S
64 .endif
65
66 .if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "riscv"
67 .PATH: ${LIBC_SRC}/${MACHINE_CPUARCH}/gen
68 .endif
69
70 .if ${MACHINE_CPUARCH} == "powerpc"
71 .PATH: ${LIBC_SRC}/quad
72 SRCS+=  ashldi3.c ashrdi3.c
73 SRCS+=  syncicache.c
74 .endif
75
76 # uuid functions from libc
77 .PATH: ${LIBC_SRC}/uuid
78 SRCS+= uuid_create_nil.c uuid_equal.c uuid_from_string.c uuid_is_nil.c uuid_to_string.c
79
80 # _setjmp/_longjmp
81 .PATH: ${SASRC}/${LIBSA_CPUARCH}
82 SRCS+=  _setjmp.S
83
84 # decompression functionality from libbz2
85 # NOTE: to actually test this functionality after libbz2 upgrade compile
86 # loader(8) with LOADER_BZIP2_SUPPORT defined
87 .PATH: ${SRCTOP}/contrib/bzip2
88 CFLAGS+= -DBZ_NO_STDIO -DBZ_NO_COMPRESS
89
90 SRCS+=bzlib.c crctable.c decompress.c huffman.c randtable.c
91
92 # decompression functionality from zlib
93 .PATH: ${SRCTOP}/contrib/zlib
94 CFLAGS+=-DHAVE_MEMCPY -I${SRCTOP}/contrib/zlib
95 SRCS+=  adler32.c crc32.c
96 SRCS+=  infback.c inffast.c inflate.c inftrees.c zutil.c
97
98 # Create a subset of includes that are safe, as well as adjusting those that aren't
99 # The lists may drive people nuts, but they are explicitly opt-in
100 FAKE_DIRS=xlocale arpa
101 SAFE_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
102 STAND_H_INC=ctype.h fcntl.h signal.h stdio.h stdlib.h
103 OTHER_INC=stdarg.h errno.h stdint.h
104
105 beforedepend:
106         echo beforedepend; \
107         mkdir -p ${FAKE_DIRS}; \
108         for i in ${SAFE_INCS}; do \
109                 ln -sf ${SRCTOP}/include/$$i $$i; \
110         done; \
111         ln -sf ${SYSDIR}/${MACHINE}/include/stdarg.h stdarg.h; \
112         ln -sf ${SYSDIR}/sys/errno.h errno.h; \
113         ln -sf ${SYSDIR}/sys/stdint.h stdint.h; \
114         ln -sf ${SRCTOP}/include/arpa/inet.h arpa/inet.h; \
115         ln -sf ${SRCTOP}/include/arpa/tftp.h arpa/tftp.h; \
116         for i in _time.h _strings.h _string.h; do \
117                 [ -f xlocale/$$i ] || cp /dev/null xlocale/$$i; \
118         done; \
119         for i in ${STAND_H_INC}; do \
120                 ln -sf ${SASRC}/stand.h $$i; \
121         done
122 CLEANDIRS+=${FAKE_DIRS}
123 CLEANFILES+= ${SAFE_INCS} ${STAND_H_INC} ${OTHER_INC}
124
125 # io routines
126 SRCS+=  closeall.c dev.c ioctl.c nullfs.c stat.c \
127         fstat.c close.c lseek.c open.c read.c write.c readdir.c
128
129 # network routines
130 SRCS+=  arp.c ether.c ip.c inet_ntoa.c in_cksum.c net.c udp.c netif.c rpc.c
131
132 # network info services:
133 SRCS+=  bootp.c rarp.c bootparam.c
134
135 # boot filesystems
136 SRCS+=  ufs.c nfs.c cd9660.c tftp.c gzipfs.c bzipfs.c
137 SRCS+=  dosfs.c ext2fs.c
138 SRCS+=  splitfs.c
139 SRCS+=  pkgfs.c
140 .if ${MK_NAND} != "no"
141 SRCS+=  nandfs.c
142 .endif
143
144 CFLAGS.bzipfs.c+= -I${SRCTOP}/contrib/bzip2
145
146 # explicit_bzero
147 .PATH: ${SYSDIR}/libkern
148 SRCS+=  explicit_bzero.c
149
150 .include <bsd.stand.mk>
151 .include <bsd.lib.mk>