Move popcount et al to src/common and add popcount32/popcount64.
[netbsd-mini2440.git] / lib / libc / Makefile
blobabb1a67d29edf64ab08b7802dd8bc18e43792756
1 # $NetBSD: Makefile,v 1.135 2008/06/23 10:22:40 ad Exp $
2 # @(#)Makefile 8.2 (Berkeley) 2/3/94
4 # All library objects contain sccsid strings by default; they may be
5 # excluded as a space-saving measure. To produce a library that does
6 # not contain these strings, delete -DLIBC_SCCS and -DSYSLIBC_SCCS
7 # from CPPFLAGS below. To remove these strings from just the system call
8 # stubs, remove just -DSYSLIBC_SCCS from CPPFLAGS.
10 # The NLS (message catalog) functions are always in libc. To choose that
11 # strerror(), perror(), strsignal(), psignal(), etc. actually call the NLS
12 # functions, put -DNLS on the CPPFLAGS line below.
14 # The YP functions are always in libc. To choose that getpwent() and friends
15 # actually call the YP functions, put -DYP on the CPPFLAGS line below.
17 # The Hesiod functions are always in libc. To choose that getpwent() and friends
18 # actually call the Hesiod functions, put -DHESIOD on the CPPFLAGS line below.
20 .include "Makefile.inc"
22 LIB= c
23 CPPFLAGS+= -I${.CURDIR}/include -I${.CURDIR}
25 LIBCDIR= ${.CURDIR}
27 .if exists (${ARCHDIR}/Makefile.inc)
28 .PATH: ${ARCHDIR}
29 .include "${ARCHDIR}/Makefile.inc"
30 .endif
32 .if exists (${ARCHDIR}/genassym.cf)
33 DPSRCS+= assym.h
34 CLEANFILES+= assym.h assym.h.tmp
36 assym.h: ${ARCHDIR}/genassym.cf
37 ${_MKTARGET_CREATE}
38 ${TOOL_GENASSYM} -- ${CC} ${CFLAGS} \
39 ${CPPFLAGS} ${CPPFLAGS.assym.h} ${PROF} \
40 < ${ARCHDIR}/genassym.cf > assym.h.tmp && \
41 mv -f assym.h.tmp assym.h
42 .endif
44 # The following controls how to build compatibility code for old NetBSD
45 # binaries. If BUILDCOLD is yes, then we build a separate library; otherwise
46 # we include the code in libc.
47 BUILDCOLD?= no
48 .if "${BUILDCOLD}" == "yes"
49 SUBDIR=compat
50 .include <bsd.subdir.mk>
51 .else
52 COMPATDIR=${.CURDIR}/compat
53 .include "${.CURDIR}/compat/Makefile.inc"
54 .endif
56 .include "${.CURDIR}/../../common/lib/libc/Makefile.inc"
57 .include "${.CURDIR}/atomic/Makefile.inc"
58 .include "${.CURDIR}/db/Makefile.inc"
59 .include "${.CURDIR}/citrus/Makefile.inc"
60 .include "${.CURDIR}/compat-43/Makefile.inc"
61 .include "${.CURDIR}/dlfcn/Makefile.inc"
62 .include "${.CURDIR}/gdtoa/Makefile.inc"
63 .include "${.CURDIR}/gen/Makefile.inc"
64 .include "${.CURDIR}/gmon/Makefile.inc"
65 .include "${.CURDIR}/hash/Makefile.inc"
66 .include "${.CURDIR}/iconv/Makefile.inc"
67 .include "${.CURDIR}/inet/Makefile.inc"
68 .include "${.CURDIR}/isc/Makefile.inc"
69 .include "${.CURDIR}/locale/Makefile.inc"
70 .include "${.CURDIR}/md/Makefile.inc"
71 .include "${.CURDIR}/misc/Makefile.inc"
72 .include "${.CURDIR}/net/Makefile.inc"
73 .include "${.CURDIR}/nameser/Makefile.inc"
74 .include "${.CURDIR}/nls/Makefile.inc"
75 .if (${MACHINE_ARCH} != "alpha") && (${MACHINE_ARCH} != "sparc64")
76 .include "${.CURDIR}/quad/Makefile.inc"
77 .endif
78 .include "${.CURDIR}/regex/Makefile.inc"
79 .include "${.CURDIR}/resolv/Makefile.inc"
80 .include "${.CURDIR}/rpc/Makefile.inc"
81 .include "${.CURDIR}/ssp/Makefile.inc"
82 .include "${.CURDIR}/stdio/Makefile.inc"
83 .include "${.CURDIR}/stdlib/Makefile.inc"
84 .include "${.CURDIR}/string/Makefile.inc"
85 .include "${.CURDIR}/termios/Makefile.inc"
86 .include "${.CURDIR}/thread-stub/Makefile.inc"
87 .include "${.CURDIR}/time/Makefile.inc"
88 .include "${.CURDIR}/sys/Makefile.inc"
89 .include "${.CURDIR}/uuid/Makefile.inc"
90 .if (${MKYP} != "no")
91 .include "${.CURDIR}/yp/Makefile.inc"
92 .endif
94 NLS= C.msg Pig.msg ca.msg cs.msg de.msg es.msg fi.msg fr.msg nl.msg \
95 no.msg pl.msg sk.msg sv.msg
97 realall: tags
98 tags: ${SRCS}
99 ${_MKTARGET_CREATE}
100 -${TOOL_CTAGS} -w ${.ALLSRC:M*.c}
101 -egrep "^ENTRY(.*)|^FUNC(.*)|^SYSCALL(.*)" /dev/null ${.ALLSRC:M*.S} | \
102 sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
103 >> ${.TARGET}; sort -o ${.TARGET} ${.TARGET}
105 FILES= tags
106 FILESNAME= libc.tags
107 FILESDIR= /var/db
110 # workaround for I18N stuffs: build singlebyte setlocale() for libc.a,
111 # multibyte for libc.so. the quirk should be removed when we support
112 # dlopen() from within statically linked binaries.
113 CSHLIBFLAGS+= -D_I18N_DYNAMIC
115 .include <bsd.lib.mk>
117 # force the dynamic linker to initialize libc first
118 SHLIB_SHFLAGS+= -Wl,-z,initfirst