| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 | # Makefile for uClibc## Copyright (C) 2000-2008 Erik Andersen <andersen@uclibc.org>## Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.#subdirs += libc/inetinclude $(top_srcdir)libc/inet/rpc/Makefile.inINET_DIR := $(top_srcdir)libc/inetINET_OUT := $(top_builddir)libc/inetCFLAGS-inet := -DRESOLVER="\"resolv.c\""CSRC-y :=# des uses ntohlCSRC-$(findstring y,$(UCLIBC_HAS_CRYPT_IMPL)$(UCLIBC_HAS_IPV4)$(UCLIBC_HAS_IPV6)) += ntohl.cCSRC-$(findstring y,$(UCLIBC_HAS_IPV4)$(UCLIBC_HAS_IPV6)) += \	getservice.c getproto.c hostid.c getnetent.c getnetbynm.c getnetbyad.c \	inet_net.c herror.c if_index.c gai_strerror.c getaddrinfo.c \	ifaddrs.c ntop.cCSRC-$(UCLIBC_HAS_IPV6) += in6_addr.c# multi source addr.cCSRC-$(findstring y,$(UCLIBC_HAS_IPV4)$(UCLIBC_HAS_IPV6)) += \	inet_aton.c inet_addr.c inet_ntoa.c inet_makeaddr.c \	inet_lnaof.c inet_netof.c# multi source resolv.cCSRC-$(findstring y,$(UCLIBC_HAS_IPV4)$(UCLIBC_HAS_IPV6)) += \	encodeh.c decodeh.c encoded.c decoded.c \	encodeq.c encodea.c \	read_etc_hosts_r.c \	dnslookup.c opennameservers.c closenameservers.c \	getnameinfo.c \	gethostent.c gethostent_r.cCSRC-$(findstring y,$(UCLIBC_HAS_IPV4)$(UCLIBC_HAS_IPV6)) += \	get_hosts_byaddr_r.c get_hosts_byname_r.c \	gethostbyaddr_r.c gethostbyname_r.c gethostbyname2_r.c \	gethostbyaddr.c gethostbyname.c gethostbyname2.cCSRC-$(findstring y,$(UCLIBC_HAS_IPV4)$(UCLIBC_HAS_IPV6)) += \	res_init.c res_query.c res_comp.c ns_name.c \	_res_state.c## # unused ATM## CSRC-y += encodep.c decodep.c formquery.c# multi source socketcalls.csocketcalls_CSRC += \	accept.c bind.c connect.c getpeername.c getsockname.c \	getsockopt.c listen.c recv.c recvfrom.c recvmsg.c send.c sendmsg.c \	sendto.c setsockopt.c shutdown.c socket.c socketpair.cCSRC-$(UCLIBC_HAS_SOCKET) += $(socketcalls_CSRC) opensock.cCSRC-$(findstring y,$(UCLIBC_HAS_SOCKET)$(UCLIBC_HAS_IPV4)$(UCLIBC_HAS_IPV6)) += ethers.c ether_addr.cINET_SRC := $(patsubst %.c,$(INET_DIR)/%.c,$(CSRC-y))INET_OBJ := $(patsubst %.c,$(INET_OUT)/%.o,$(CSRC-y))libc-y += $(INET_OBJ)objclean-y += inet_cleaninet_clean:	$(do_rm) $(addprefix $(INET_OUT)/*., o os)
 |