Makefile revision 211774
1#	@(#)Makefile	8.2 (Berkeley) 2/3/94
2# $FreeBSD: head/lib/libc/Makefile 211774 2010-08-24 20:54:43Z imp $
3
4SHLIBDIR?= /lib
5
6.include <bsd.own.mk>
7
8# We have to special case powerpc and powerpc64, since they mostly have
9# the same source implementation.  libc is very different due to large
10# ABI differences.
11.if ${LIBC_ARCH} == "powerpc"
12LIBC_ARCH=${MACHINE_ARCH}
13.else
14LIBC_ARCH=${LIBC_ARCH}
15.endif
16
17# All library objects contain FreeBSD revision strings by default; they may be
18# excluded as a space-saving measure.  To produce a library that does
19# not contain these strings, add -DSTRIP_FBSDID (see <sys/cdefs.h>) to CFLAGS
20# below.  Note: there are no IDs for syscall stubs whose sources are generated.
21# To include legacy CSRG sccsid strings, add -DLIBC_SCCS and -DSYSLIBC_SCCS
22# to CFLAGS below.  -DSYSLIBC_SCCS affects just the system call stubs.
23LIB=c
24SHLIB_MAJOR= 7
25WARNS?=	2
26CFLAGS+=-I${.CURDIR}/include -I${.CURDIR}/../../include
27CFLAGS+=-I${.CURDIR}/${LIBC_ARCH}
28CFLAGS+=-DNLS
29CLEANFILES+=tags
30INSTALL_PIC_ARCHIVE=
31PRECIOUSLIB=
32
33#
34# Only link with static libgcc.a (no libgcc_eh.a).
35#
36DPADD+=	${LIBGCC}
37LDFLAGS+= -nodefaultlibs
38LDADD+= -lgcc -lssp_nonshared
39
40# Define (empty) variables so that make doesn't give substitution
41# errors if the included makefiles don't change these:
42MDSRCS=
43MISRCS=
44MDASM=
45MIASM=
46NOASM=
47
48.include "${.CURDIR}/${LIBC_ARCH}/Makefile.inc"
49.include "${.CURDIR}/db/Makefile.inc"
50.include "${.CURDIR}/compat-43/Makefile.inc"
51.include "${.CURDIR}/gdtoa/Makefile.inc"
52.include "${.CURDIR}/gen/Makefile.inc"
53.include "${.CURDIR}/gmon/Makefile.inc"
54.include "${.CURDIR}/inet/Makefile.inc"
55.include "${.CURDIR}/isc/Makefile.inc"
56.include "${.CURDIR}/locale/Makefile.inc"
57.include "${.CURDIR}/nameser/Makefile.inc"
58.include "${.CURDIR}/net/Makefile.inc"
59.include "${.CURDIR}/nls/Makefile.inc"
60.include "${.CURDIR}/posix1e/Makefile.inc"
61.if ${LIBC_ARCH} != "amd64" && \
62    ${LIBC_ARCH} != "ia64" && \
63    ${LIBC_ARCH} != "powerpc64" && \
64    ${LIBC_ARCH} != "sparc64" && \
65    ${LIBC_ARCH} != "mips"
66.include "${.CURDIR}/quad/Makefile.inc"
67.endif
68.if ${LIBC_ARCH} == "mips" && \
69    (!defined(TARGET_ABI) || ${TARGET_ABI} == "o32")
70.include "${.CURDIR}/quad/Makefile.inc"
71.endif
72.include "${.CURDIR}/regex/Makefile.inc"
73.include "${.CURDIR}/resolv/Makefile.inc"
74.include "${.CURDIR}/stdio/Makefile.inc"
75.include "${.CURDIR}/stdlib/Makefile.inc"
76.include "${.CURDIR}/stdtime/Makefile.inc"
77.include "${.CURDIR}/string/Makefile.inc"
78.include "${.CURDIR}/sys/Makefile.inc"
79.include "${.CURDIR}/rpc/Makefile.inc"
80.include "${.CURDIR}/uuid/Makefile.inc"
81.include "${.CURDIR}/xdr/Makefile.inc"
82.if ${LIBC_ARCH} == "arm" || ${LIBC_ARCH} == "mips"
83.include "${.CURDIR}/softfloat/Makefile.inc"
84.endif
85.if ${MK_NIS} != "no"
86CFLAGS+= -DYP
87.include "${.CURDIR}/yp/Makefile.inc"
88.endif
89.if ${MK_HESIOD} != "no"
90CFLAGS+= -DHESIOD
91.endif
92.if ${MK_FP_LIBC} == "no"
93CFLAGS+= -DNO_FLOATING_POINT
94.endif
95.if ${MK_NS_CACHING} != "no"
96CFLAGS+= -DNS_CACHING
97.endif
98.if defined(_FREEFALL_CONFIG)
99CFLAGS+=-D_FREEFALL_CONFIG
100.endif
101
102VERSION_DEF=${.CURDIR}/Versions.def
103SYMBOL_MAPS=${SYM_MAPS}
104CFLAGS+= -DSYMBOL_VERSIONING
105
106# If there are no machine dependent sources, append all the
107# machine-independent sources:
108.if empty(MDSRCS)
109SRCS+=	${MISRCS}
110.else
111# Append machine-dependent sources, then append machine-independent sources
112# for which there is no machine-dependent variant.
113SRCS+=	${MDSRCS}
114.for _src in ${MISRCS}
115.if ${MDSRCS:R:M${_src:R}} == ""
116SRCS+=	${_src}
117.endif
118.endfor
119.endif
120
121KQSRCS=	adddi3.c anddi3.c ashldi3.c ashrdi3.c cmpdi2.c divdi3.c iordi3.c \
122	lshldi3.c lshrdi3.c moddi3.c muldi3.c negdi2.c notdi2.c qdivrem.c \
123	subdi3.c ucmpdi2.c udivdi3.c umoddi3.c xordi3.c
124KSRCS=	bcmp.c ffs.c ffsl.c fls.c flsl.c index.c mcount.c rindex.c \
125	strcat.c strcmp.c strcpy.c strlen.c strncpy.c
126
127libkern: libkern.gen libkern.${LIBC_ARCH}
128
129libkern.gen: ${KQSRCS} ${KSRCS}
130	cp -p ${.CURDIR}/quad/quad.h ${.ALLSRC} ${DESTDIR}/sys/libkern
131
132libkern.${LIBC_ARCH}:: ${KMSRCS}
133.if defined(KMSRCS) && !empty(KMSRCS)
134	cp -p ${.ALLSRC} ${DESTDIR}/sys/libkern/${LIBC_ARCH}
135.endif
136
137.include <bsd.lib.mk>
138
139# Disable warnings in contributed sources.
140CWARNFLAGS:=	${.IMPSRC:Ngdtoa_*.c:C/^.+$/${CWARNFLAGS}/:C/^$/-w/}
141# XXX For now, we don't allow libc to be compiled with
142# -fstack-protector-all because it breaks rtld.  We may want to make a librtld
143# in the future to circumvent this.
144SSP_CFLAGS:=	${SSP_CFLAGS:S/^-fstack-protector-all$/-fstack-protector/}
145# Disable stack protection for SSP symbols.
146SSP_CFLAGS:=	${.IMPSRC:N*/stack_protector.c:C/^.+$/${SSP_CFLAGS}/}
147