OSDN Git Service

linux_specific: handle accept4 and pipe2
[uclinux-h8/uClibc.git] / libc / inet / Makefile.in
1 # Makefile for uClibc
2 #
3 # Copyright (C) 2000-2008 Erik Andersen <andersen@uclibc.org>
4 #
5 # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
6 #
7
8 subdirs += libc/inet
9
10 include $(top_srcdir)libc/inet/rpc/Makefile.in
11
12 INET_DIR := $(top_srcdir)libc/inet
13 INET_OUT := $(top_builddir)libc/inet
14
15 CFLAGS-inet := -DRESOLVER="\"resolv.c\""
16 CSRC-y :=
17 # des uses ntohl
18 CSRC-$(findstring y,$(UCLIBC_HAS_CRYPT_IMPL)$(UCLIBC_HAS_IPV4)$(UCLIBC_HAS_IPV6)) += ntohl.c
19 CSRC-$(findstring y,$(UCLIBC_HAS_IPV4)$(UCLIBC_HAS_IPV6)) += \
20         getservice.c getproto.c getnet.c hostid.c \
21         inet_net.c herror.c if_index.c gai_strerror.c getaddrinfo.c \
22         ifaddrs.c ntop.c
23 CSRC-$(UCLIBC_HAS_IPV6) += in6_addr.c
24 # multi source addr.c
25 CSRC-$(findstring y,$(UCLIBC_HAS_IPV4)$(UCLIBC_HAS_IPV6)) += \
26         inet_aton.c inet_addr.c inet_ntoa.c inet_makeaddr.c \
27         inet_lnaof.c inet_netof.c
28 # multi source resolv.c
29 CSRC-$(findstring y,$(UCLIBC_HAS_IPV4)$(UCLIBC_HAS_IPV6)) += \
30         encodeh.c decodeh.c encoded.c decoded.c \
31         encodeq.c encodea.c \
32         read_etc_hosts_r.c \
33         dnslookup.c opennameservers.c closenameservers.c \
34         getnameinfo.c \
35         gethostent.c gethostent_r.c
36 CSRC-$(findstring y,$(UCLIBC_HAS_IPV4)$(UCLIBC_HAS_IPV6)) += \
37         get_hosts_byaddr_r.c get_hosts_byname_r.c \
38         gethostbyaddr_r.c gethostbyname_r.c gethostbyname2_r.c \
39         gethostbyaddr.c gethostbyname.c gethostbyname2.c
40 CSRC-$(findstring y,$(UCLIBC_HAS_IPV4)$(UCLIBC_HAS_IPV6)) += \
41         res_init.c res_query.c res_comp.c ns_name.c \
42         _res_state.c
43 ## # unused ATM
44 ## CSRC-y += encodep.c decodep.c formquery.c
45
46 # multi source socketcalls.c
47 socketcalls_CSRC-y += \
48         accept.c bind.c connect.c getpeername.c getsockname.c \
49         getsockopt.c listen.c recv.c recvfrom.c recvmsg.c send.c sendmsg.c \
50         sendto.c setsockopt.c shutdown.c socket.c socketpair.c
51 socketcalls_CSRC-$(UCLIBC_LINUX_SPECIFIC) += accept4.c
52 CSRC-$(UCLIBC_HAS_SOCKET) += $(socketcalls_CSRC-y) opensock.c
53
54 CSRC-$(findstring y,$(UCLIBC_HAS_SOCKET)$(UCLIBC_HAS_IPV4)$(UCLIBC_HAS_IPV6)) += ethers.c ether_addr.c
55
56 INET_SRC := $(patsubst %.c,$(INET_DIR)/%.c,$(CSRC-y))
57 INET_OBJ := $(patsubst %.c,$(INET_OUT)/%.o,$(CSRC-y))
58
59 libc-y += $(INET_OBJ)
60
61 objclean-y += CLEAN_libc/inet
62
63 CLEAN_libc/inet:
64         $(do_rm) $(addprefix $(INET_OUT)/*., o os)