regen
[dragonfly.git] / lib / libc / Makefile.inc
1 # $FreeBSD: src/lib/libc/Makefile.inc,v 1.5 1999/08/27 23:58:06 peter Exp $
2 # $DragonFly: src/lib/libc/Makefile.inc,v 1.5 2006/08/19 09:14:27 swildner Exp $
3 #
4 # This file contains make rules that are shared by libc and libc_r.
5 #
6 # Define (empty) variables so that make doesn't give substitution
7 # errors if the included makefiles don't change these:
8 MDSRCS=
9 MISRCS=
10 MDASM=
11 MIASM=
12 NOASM=
13
14 #WARNS=6
15
16 #
17 # If there is a machine dependent makefile, use it:
18 #
19 .if exists(${.CURDIR}/../libc/${MACHINE_ARCH}/Makefile.inc)
20 .include "${.CURDIR}/../libc/${MACHINE_ARCH}/Makefile.inc"
21 .endif
22
23 .include "${.CURDIR}/../libc/citrus/Makefile.inc"
24 .include "${.CURDIR}/../libc/db/Makefile.inc"
25 .include "${.CURDIR}/../libc/compat-43/Makefile.inc"
26 .include "${.CURDIR}/../libc/gen/Makefile.inc"
27 .include "${.CURDIR}/../libc/gmon/Makefile.inc"
28 .include "${.CURDIR}/../libc/iconv/Makefile.inc"
29 .include "${.CURDIR}/../libc/locale/Makefile.inc"
30 .include "${.CURDIR}/../libc/net/Makefile.inc"
31 .include "${.CURDIR}/../libc/nls/Makefile.inc"
32 .if !defined(NO_QUAD)
33 .include "${.CURDIR}/../libc/quad/Makefile.inc"
34 .endif
35 .include "${.CURDIR}/../libc/regex/Makefile.inc"
36 .include "${.CURDIR}/../libc/stdio/Makefile.inc"
37 .include "${.CURDIR}/../libc/stdlib/Makefile.inc"
38 .include "${.CURDIR}/../libc/stdtime/Makefile.inc"
39 .include "${.CURDIR}/../libc/string/Makefile.inc"
40 .include "${.CURDIR}/../libc/sys/Makefile.inc"
41 .include "${.CURDIR}/../libc/rpc/Makefile.inc"
42 .include "${.CURDIR}/../libc/xdr/Makefile.inc"
43 .if !defined(NO_YP_LIBC)
44 CFLAGS+= -DYP
45 .include "${.CURDIR}/../libc/yp/Makefile.inc"
46 .endif
47
48 # If there are no machine dependent sources, append all the
49 # machine-independent sources:
50 .if empty(MDSRCS)
51 SRCS+=  ${MISRCS}
52 .else
53 # Append machine-dependent sources, then append machine-independent sources
54 # for which there is no machine-dependent variant.
55 SRCS+=  ${MDSRCS}
56 .for _src in ${MISRCS}
57 .if ${MDSRCS:R:M${_src:R}} == ""
58 SRCS+=  ${_src}
59 .endif
60 .endfor
61 .endif