xref: /dragonfly/stand/lib/Makefile (revision 655933d6)
1# $FreeBSD: src/lib/libstand/Makefile,v 1.14.2.10 2002/07/22 14:21:50 ru Exp $
2#
3# Originally from	$NetBSD: Makefile,v 1.21 1997/10/26 22:08:38 lukem Exp $
4#
5# Notes:
6# - We don't use the libc strerror/sys_errlist because the string table is
7#   quite large.
8#
9
10LIB?=		stand
11INTERNALLIB=
12NOPIC=		YES
13MAN?=		libstand.3
14CSTD?=		c99
15WARNS?=		2
16NO_STRICT_ALIASING=
17
18LIBSTAND_SRC?=	${.CURDIR}
19LIBSTAND_ARCH?=	${MACHINE_ARCH}
20LIBC_SRC=	${LIBSTAND_SRC}/../../lib/libc
21
22CFLAGS+=	-D_STANDALONE
23
24# Mostly OK, some of the libc imports are a bit noisy
25CFLAGS+=	-ffreestanding
26
27# Disable stack protector
28CFLAGS+=	-fno-stack-protector
29
30.if (${CFLAGS:M-flto} && ${CCVER:Mgcc*})
31CFLAGS+=	-fno-builtin	# LTO exposes too much stuff
32.endif
33
34.if ${LIBSTAND_ARCH} == "x86_64"
35CFLAGS+=	-mno-red-zone -fPIC
36.endif
37
38.if ${LIBSTAND_ARCH} == "i386"
39.if ${CCVER:Mgcc*}
40CFLAGS+=	-mpreferred-stack-boundary=2
41.endif
42FORCE_CPUTYPE=	i386
43CFLAGS+=	-m32
44.endif
45
46.if ${LIBSTAND_ARCH} == "i386" || ${LIBSTAND_ARCH} == "x86_64"
47CFLAGS+=	-mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float
48.endif
49
50# standalone components and stuff we have modified locally
51SRCS+=	__main.c assert.c bcd.c bswap.c environment.c getopt.c gets.c \
52	globals.c pager.c printf.c random.c \
53	strdup.c strerror.c strtol.c strtoul.c sbrk.c \
54	twiddle.c zalloc.c zalloc_malloc.c
55
56# private (pruned) versions of libc string functions
57SRCS+=	strcasecmp.c
58
59# string functions from libc
60.PATH:	${LIBSTAND_SRC}/../../lib/libc/string
61.if ${LIBSTAND_ARCH} == "x86_64" || ${LIBSTAND_ARCH} == "i386"
62SRCS+=	bcmp.c bcopy.c bzero.c ffs.c index.c memccpy.c memchr.c memcmp.c \
63        memcpy.c memmove.c memset.c qdivrem.c rindex.c strcat.c strchr.c \
64        strcmp.c strcpy.c strcspn.c strlen.c strncat.c strncmp.c strncpy.c \
65	strpbrk.c strrchr.c strsep.c strspn.c strstr.c strtok.c swab.c
66
67# math stuff, thus no -flto!
68qdivrem.o:	qdivrem.c
69	${CC} ${CFLAGS:N-flto} -c -o ${.TARGET} ${.IMPSRC}
70.endif
71
72# _setjmp/_longjmp
73.PATH:	${LIBSTAND_SRC}/${LIBSTAND_ARCH}
74.if ${LIBSTAND_ARCH} == "x86_64" || ${LIBSTAND_ARCH} == "i386"
75# really only required for i386
76CFLAGS+=-I${LIBSTAND_SRC}/../../lib/libc/${MACHINE_ARCH}
77.endif
78SRCS+=	_setjmp.S
79
80# decompression functionality from libz
81# NOTE: crc32.c is used from libz and not libkern
82.include "../../lib/libz/Makefile.stand"
83
84# iscsi_crc32() for hammer2
85.PATH:	${LIBSTAND_SRC}/../../sys/libkern
86SRCS+=  icrc32.c
87
88# decompression functionality from libbz2
89BZ2DIR=	${LIBSTAND_SRC}/../../contrib/bzip2
90.PATH:	${BZ2DIR}
91CFLAGS+=-I${BZ2DIR} -DBZ_NO_STDIO -DBZ_NO_COMPRESS
92SRCS+=	bzlib.c crctable.c decompress.c huffman.c randtable.c
93
94# io routines
95SRCS+=	closeall.c dev.c ioctl.c nullfs.c stat.c \
96	fstat.c close.c lseek.c open.c read.c write.c readdir.c
97
98# uuid routines
99SRCS+=	uuid_from_string.c uuid_to_string.c
100
101# uuid routines from libc
102.PATH: ${LIBC_SRC}/uuid
103SRCS+=	uuid_create_nil.c
104
105# network routines
106SRCS+=	arp.c ether.c inet_ntoa.c in_cksum.c net.c udp.c netif.c rpc.c
107
108# network info services:
109SRCS+=	bootp.c rarp.c bootparam.c
110
111# boot filesystems
112SRCS+=	ufs.c nfs.c cd9660.c tftp.c bzipfs.c gzipfs.c
113SRCS+=	netif.c nfs.c
114SRCS+=	dosfs.c ext2fs.c
115SRCS+=	splitfs.c
116SRCS+=	hammer1.c
117SRCS+=	hammer2.c
118
119.include <bsd.lib.mk>
120