2006-10-05 15:47:08 +05:30
|
|
|
# Makefile for busybox
|
|
|
|
#
|
|
|
|
# Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
|
|
|
#
|
|
|
|
# Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
|
|
|
#
|
|
|
|
|
|
|
|
lib-y:=
|
2007-11-22 06:28:49 +05:30
|
|
|
|
2010-03-26 13:05:24 +05:30
|
|
|
lib-$(CONFIG_UDHCPC) += common.o packet.o signalpipe.o socket.o
|
|
|
|
lib-$(CONFIG_UDHCPD) += common.o packet.o signalpipe.o socket.o
|
2007-11-22 06:28:49 +05:30
|
|
|
|
2010-03-22 18:59:13 +05:30
|
|
|
lib-$(CONFIG_UDHCPC) += dhcpc.o
|
2010-03-22 18:12:13 +05:30
|
|
|
lib-$(CONFIG_UDHCPD) += dhcpd.o arpping.o files.o leases.o static_leases.o
|
|
|
|
lib-$(CONFIG_DUMPLEASES) += dumpleases.o
|
|
|
|
lib-$(CONFIG_DHCPRELAY) += dhcprelay.o
|
2007-11-22 06:28:49 +05:30
|
|
|
|
2010-03-22 18:12:13 +05:30
|
|
|
lib-$(CONFIG_FEATURE_UDHCPC_ARPING) += arpping.o
|
2008-11-06 06:19:59 +05:30
|
|
|
lib-$(CONFIG_FEATURE_UDHCP_RFC3397) += domain_codec.o
|