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-03-26 18:52:35 +05:30
|
|
|
lib-$(CONFIG_APP_UDHCPC) += common.o options.o packet.o \
|
2007-02-28 02:45:08 +05:30
|
|
|
signalpipe.o socket.o
|
2007-03-26 18:52:35 +05:30
|
|
|
lib-$(CONFIG_APP_UDHCPD) += common.o options.o packet.o \
|
2007-02-28 02:45:08 +05:30
|
|
|
signalpipe.o socket.o
|
2007-11-22 06:28:49 +05:30
|
|
|
|
2007-02-28 02:45:08 +05:30
|
|
|
lib-$(CONFIG_APP_UDHCPC) += dhcpc.o clientpacket.o clientsocket.o \
|
|
|
|
script.o
|
2007-11-22 06:28:49 +05:30
|
|
|
|
|
|
|
UDHCPC_NEEDS_ARPING-$(CONFIG_FEATURE_UDHCPC_ARPING) = y
|
2007-11-23 01:39:41 +05:30
|
|
|
lib-$(UDHCPC_NEEDS_ARPING-y) += arpping.o
|
2007-11-22 06:28:49 +05:30
|
|
|
|
2007-02-28 02:45:08 +05:30
|
|
|
lib-$(CONFIG_APP_UDHCPD) += dhcpd.o arpping.o files.o leases.o \
|
|
|
|
serverpacket.o static_leases.o
|
2007-11-22 06:28:49 +05:30
|
|
|
|
2007-02-28 02:45:08 +05:30
|
|
|
lib-$(CONFIG_APP_DUMPLEASES) += dumpleases.o
|
2006-11-21 01:10:36 +05:30
|
|
|
lib-$(CONFIG_APP_DHCPRELAY) += dhcprelay.o
|
2008-11-06 06:19:59 +05:30
|
|
|
lib-$(CONFIG_FEATURE_UDHCP_RFC3397) += domain_codec.o
|