1 # $FreeBSD: src/lib/libstand/Makefile,v 1.14.2.10 2002/07/22 14:21:50 ru Exp $
3 # Originally from $NetBSD: Makefile,v 1.21 1997/10/26 22:08:38 lukem Exp $
6 # - We don't use the libc strerror/sys_errlist because the string table is
19 LIBSTAND_SRC?
= ${.CURDIR
}
20 LIBSTAND_ARCH?
= ${MACHINE_ARCH}
21 LIBC_SRC
= ${LIBSTAND_SRC}/..
/libc
23 CFLAGS
+= -D_STANDALONE
25 # Mostly OK, some of the libc imports are a bit noisy
26 CFLAGS
+= -ffreestanding
28 # Disable stack protector
29 CFLAGS
+= -fno-stack-protector
31 .if
(${CFLAGS
:M-flto
} && ${CCVER
:Mgcc
*})
32 CFLAGS
+= -fno-builtin
# LTO exposes too much stuff
35 .if
${LIBSTAND_ARCH} == "x86_64"
36 CFLAGS
+= -mno-red-zone
-fPIC
39 .if
${LIBSTAND_ARCH} == "i386"
41 CFLAGS
+= -mpreferred-stack-boundary
=2
47 .if
${LIBSTAND_ARCH} == "i386" ||
${LIBSTAND_ARCH} == "x86_64"
48 CFLAGS
+= -mno-mmx
-mno-3dnow
-mno-sse
-mno-sse2
-mno-sse3
-msoft-float
51 # standalone components and stuff we have modified locally
52 SRCS
+= __main.c assert.c bcd.c bswap.c environment.c getopt.c gets.c \
53 globals.c pager.c printf.c random.c \
54 strdup.c strerror.c strtol.c strtoul.c sbrk.c \
55 twiddle.c zalloc.c zalloc_malloc.c
57 # private (pruned) versions of libc string functions
60 # string functions from libc
61 .PATH
: ${LIBSTAND_SRC}/..
/libc
/string
62 .if
${LIBSTAND_ARCH} == "x86_64" ||
${LIBSTAND_ARCH} == "i386"
63 SRCS
+= bcmp.c bcopy.c bzero.c ffs.c index.c memccpy.c memchr.c memcmp.c \
64 memcpy.c memmove.c memset.c qdivrem.c rindex.c strcat.c strchr.c \
65 strcmp.c strcpy.c strcspn.c strlen.c strncat.c strncmp.c strncpy.c \
66 strpbrk.c strrchr.c strsep.c strspn.c strstr.c strtok.c swab.c
68 # math stuff, thus no -flto!
70 ${CC} ${CFLAGS
:N-flto
} -c
-o
${.TARGET
} ${.IMPSRC
}
74 .PATH
: ${LIBSTAND_SRC}/${LIBSTAND_ARCH}
75 .if
${LIBSTAND_ARCH} == "x86_64" ||
${LIBSTAND_ARCH} == "i386"
76 # really only required for i386
77 CFLAGS
+=-I
${LIBSTAND_SRC}/..
/libc
/${MACHINE_ARCH}
81 # decompression functionality from libz
82 # NOTE: crc32.c is used from libz and not libkern
83 .
include "../libz/Makefile.stand"
85 # iscsi_crc32() for hammer2
86 .PATH
: ${LIBSTAND_SRC}/..
/..
/sys
/libkern
89 # decompression functionality from libbz2
90 BZ2DIR
= ${LIBSTAND_SRC}/..
/..
/contrib
/bzip2
92 CFLAGS
+=-I
${BZ2DIR} -DBZ_NO_STDIO
-DBZ_NO_COMPRESS
93 SRCS
+= bzlib.c crctable.c decompress.c huffman.c randtable.c
96 SRCS
+= closeall.c dev.c ioctl.c nullfs.c stat.c \
97 fstat.c close.c lseek.c open.c read.c write.c readdir.c
100 SRCS
+= uuid_from_string.c uuid_to_string.c
102 # uuid routines from libc
103 .PATH
: ${LIBC_SRC}/uuid
104 SRCS
+= uuid_create_nil.c
107 SRCS
+= arp.c ether.c inet_ntoa.c in_cksum.c net.c udp.c netif.c rpc.c
109 # network info services:
110 SRCS
+= bootp.c rarp.c bootparam.c
113 SRCS
+= ufs.c nfs.c cd9660.c tftp.c bzipfs.c gzipfs.c
115 SRCS
+= dosfs.c ext2fs.c
120 .
include <bsd.lib.mk
>