a85740c8af
function old new delta send_offer 292 461 +169 udhcpd_main 1531 1588 +57 read_leases 330 332 +2 add_lease 314 312 -2 find_lease_by_mac 68 - -68 find_free_or_expired_nip 174 - -174 ------------------------------------------------------------------------------ (add/remove: 0/4 grow/shrink: 3/1 up/down: 228/-244) Total: -16 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
22 lines
589 B
Plaintext
22 lines
589 B
Plaintext
# Makefile for busybox
|
|
#
|
|
# Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
|
#
|
|
# Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
|
#
|
|
|
|
lib-y:=
|
|
|
|
INSERT
|
|
|
|
lib-$(CONFIG_UDHCPC) += common.o packet.o signalpipe.o socket.o
|
|
lib-$(CONFIG_UDHCPD) += common.o packet.o signalpipe.o socket.o
|
|
|
|
lib-$(CONFIG_UDHCPC) += dhcpc.o
|
|
lib-$(CONFIG_UDHCPD) += dhcpd.o arpping.o
|
|
lib-$(CONFIG_DUMPLEASES) += dumpleases.o
|
|
lib-$(CONFIG_DHCPRELAY) += dhcprelay.o
|
|
|
|
lib-$(CONFIG_FEATURE_UDHCPC_ARPING) += arpping.o
|
|
lib-$(CONFIG_FEATURE_UDHCP_RFC3397) += domain_codec.o
|