]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - stand/libsa/Makefile
MFC r325834,r325997,326502: Move sys/boot to stand/
[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 PACKAGE=lib${LIB}
10 MK_PROFILE=     no
11 MK_SSP=         no
12
13 .include <bsd.init.mk>
14
15 INTERNALLIB=
16 LIBSA_CPUARCH?=${MACHINE_CPUARCH}
17 LIBC_SRC=       ${SRCTOP}/lib/libc
18
19 LIB?=           sa
20 NO_PIC=
21 WARNS?=         0
22
23 CFLAGS+= -I${SASRC}
24
25 # standalone components and stuff we have modified locally
26 SRCS+=  gzguts.h zutil.h __main.c assert.c bcd.c environment.c getopt.c gets.c \
27         globals.c pager.c panic.c printf.c strdup.c strerror.c strtol.c strtoul.c \
28         random.c sbrk.c twiddle.c zalloc.c zalloc_malloc.c
29
30 # private (pruned) versions of libc string functions
31 SRCS+=  strcasecmp.c
32
33 .PATH: ${LIBC_SRC}/net
34
35 SRCS+= ntoh.c
36
37 # string functions from libc
38 .PATH: ${LIBC_SRC}/string
39 SRCS+=  bcmp.c bcopy.c bzero.c ffs.c fls.c \
40         memccpy.c memchr.c memcmp.c memcpy.c memmove.c memset.c \
41         qdivrem.c strcat.c strchr.c strcmp.c strcpy.c stpcpy.c stpncpy.c \
42         strcspn.c strlcat.c strlcpy.c strlen.c strncat.c strncmp.c strncpy.c \
43         strnlen.c strpbrk.c strrchr.c strsep.c strspn.c strstr.c strtok.c swab.c
44 .if ${MACHINE_CPUARCH} == "arm"
45 .PATH: ${LIBC_SRC}/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.
50 .if ${COMPILER_VERSION} < 30800
51 CFLAGS.clang+=  -mllvm -arm-use-movt=0
52 .else
53 CFLAGS.clang+=  -mno-movt
54 .endif
55 CFLAGS.clang+=  -mfpu=none
56
57 # Compiler support functions
58 .PATH: ${SRCTOP}/contrib/compiler-rt/lib/builtins/
59 # __clzsi2 and ctzsi2 for various builtin functions
60 SRCS+=  clzsi2.c ctzsi2.c
61 # Divide and modulus functions called by the compiler
62 SRCS+=   divmoddi4.c  divmodsi4.c  divdi3.c  divsi3.c  moddi3.c  modsi3.c
63 SRCS+=  udivmoddi4.c udivmodsi4.c udivdi3.c udivsi3.c umoddi3.c umodsi3.c
64
65 .PATH: ${SRCTOP}/contrib/compiler-rt/lib/builtins/arm/
66 SRCS+=  aeabi_idivmod.S aeabi_ldivmod.S aeabi_uidivmod.S aeabi_uldivmod.S
67 SRCS+=  aeabi_memcmp.S aeabi_memcpy.S aeabi_memmove.S aeabi_memset.S
68 .endif
69
70 .if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "riscv"
71 .PATH: ${LIBC_SRC}/${MACHINE_CPUARCH}/gen
72 .endif
73
74 .if ${MACHINE_CPUARCH} == "powerpc"
75 .PATH: ${LIBC_SRC}/quad
76 SRCS+=  ashldi3.c ashrdi3.c
77 SRCS+=  syncicache.c
78 .endif
79
80 # uuid functions from libc
81 .PATH: ${LIBC_SRC}/uuid
82 SRCS+= 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}
86 SRCS+=  _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
92 CFLAGS+= -DBZ_NO_STDIO -DBZ_NO_COMPRESS
93 SRCS+=  libsa_bzlib_private.h
94
95 .for file in bzlib.c crctable.c decompress.c huffman.c randtable.c
96 SRCS+=  _${file}
97 CLEANFILES+=    _${file}
98
99 _${file}: ${file}
100         sed "s|bzlib_private\.h|libsa_bzlib_private.h|" \
101             ${.ALLSRC} > ${.TARGET}
102 .endfor
103
104 CLEANFILES+= libsa_bzlib_private.h
105 libsa_bzlib_private.h: bzlib_private.h
106         sed -e 's|<stdlib.h>|"stand.h"|' \
107                 ${.ALLSRC} > ${.TARGET}
108
109 # decompression functionality from zlib
110 .PATH: ${SRCTOP}/contrib/zlib
111 CFLAGS+=-DHAVE_MEMCPY -I${SRCTOP}/contrib/zlib
112 SRCS+=  adler32.c crc32.c libsa_zutil.h libsa_gzguts.h
113
114 .for file in infback.c inffast.c inflate.c inftrees.c zutil.c
115 SRCS+=  _${file}
116 CLEANFILES+=    _${file}
117
118 _${file}: ${file}
119         sed -e "s|zutil\.h|libsa_zutil.h|" \
120             -e "s|gzguts\.h|libsa_gzguts.h|" \
121             ${.ALLSRC} > ${.TARGET}
122 .endfor
123
124 # depend on stand.h being able to be included multiple times
125 .for file in zutil.h gzguts.h
126 CLEANFILES+= libsa_${file}
127 libsa_${file}: ${file}
128         sed -e 's|<fcntl.h>|"stand.h"|' \
129             -e 's|<stddef.h>|"stand.h"|' \
130             -e 's|<string.h>|"stand.h"|' \
131             -e 's|<stdio.h>|"stand.h"|' \
132             -e 's|<stdlib.h>|"stand.h"|' \
133             ${.ALLSRC} > ${.TARGET}
134 .endfor
135
136 # io routines
137 SRCS+=  closeall.c dev.c ioctl.c nullfs.c stat.c \
138         fstat.c close.c lseek.c open.c read.c write.c readdir.c
139
140 # network routines
141 SRCS+=  arp.c ether.c ip.c inet_ntoa.c in_cksum.c net.c udp.c netif.c rpc.c
142
143 # network info services:
144 SRCS+=  bootp.c rarp.c bootparam.c
145
146 # boot filesystems
147 SRCS+=  ufs.c nfs.c cd9660.c tftp.c gzipfs.c bzipfs.c
148 SRCS+=  dosfs.c ext2fs.c
149 SRCS+=  splitfs.c
150 SRCS+=  pkgfs.c
151 .if ${MK_NAND} != "no"
152 SRCS+=  nandfs.c
153 .endif
154
155 # explicit_bzero
156 .PATH: ${SYSDIR}/libkern
157 SRCS+=  explicit_bzero.c
158
159 .include <bsd.stand.mk>
160 .include <bsd.lib.mk>