Makefile revision 258750
1# $FreeBSD: stable/10/lib/libc_nonshared/Makefile 258750 2013-11-29 19:44:30Z gjb $
2
3# We're actually creating a libc_noshared.a that is PIC along side libc.so.*
4# It is used exclusively with libc.so.* - there is no need for any other
5# compile modes.
6# bsd.lib.mk doesn't have an easy way to express that.
7NO_PROFILE?=
8.include <bsd.own.mk>
9NO_PIC=	
10# -fpic on some platforms, -fPIC on others.
11CFLAGS+=${PICFLAG} -DPIC -fvisibility=hidden
12
13LIB=	c_nonshared
14
15LIBC_NONSHARED_SRCS=
16
17# So that an empty .a file doesn't cause errors.
18SRCS=	__stub.c
19
20.if ${MK_ICONV} == "yes"
21.PATH: ${.CURDIR}/../libc/iconv
22.include "Makefile.iconv"
23CFLAGS+=-I${.CURDIR}/../libc/iconv
24.endif
25
26SRCS+=	${LIBC_NONSHARED_SRCS}
27
28.include <bsd.lib.mk>
29