aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'networking/udhcp/Makefile.in')
-rw-r--r--networking/udhcp/Makefile.in20
1 files changed, 6 insertions, 14 deletions
diff --git a/networking/udhcp/Makefile.in b/networking/udhcp/Makefile.in
index d06e809c9..4d3f27093 100644
--- a/networking/udhcp/Makefile.in
+++ b/networking/udhcp/Makefile.in
@@ -33,22 +33,14 @@ CONFIG_UDHCP_SHARED=n
33endif 33endif
34endif 34endif
35 35
36ifeq ($(CONFIG_UDHCPD), y)
37CONFIG_UDHCP_LEASES_FILE=y
38else
39ifeq ($(CONFIG_UDHCPD), y)
40CONFIG_UDHCP_LEASES_FILE=y
41else
42CONFIG_UDHCP_LEASES_FILE=n
43endif
44endif
45
46UDHCP-y:= 36UDHCP-y:=
47UDHCP-$(CONFIG_UDHCP_SHARED) += options.c socket.c packet.c common.c 37UDHCP-$(CONFIG_UDHCP_SHARED) += common.c options.c packet.c pidfile.c \
48UDHCP-$(CONFIG_UDHCPC) += dhcpc.c clientpacket.c script.c 38 signalpipe.c socket.c
49UDHCP-$(CONFIG_UDHCPD) += dhcpd.c arpping.c files.c leases.c serverpacket.c 39UDHCP-$(CONFIG_UDHCPC) += dhcpc.c clientpacket.c clientsocket.c \
40 script.c
41UDHCP-$(CONFIG_UDHCPD) += dhcpd.c arpping.c files.c leases.c \
42 serverpacket.c
50UDHCP-$(CONFIG_DUMPLEASES) += dumpleases.c 43UDHCP-$(CONFIG_DUMPLEASES) += dumpleases.c
51UDHCP-$(CONFIG_UDHCP_LEASES_FILE) += leases_file.c
52UDHCP_OBJS=$(patsubst %.c,$(UDHCP_DIR)%.o, $(UDHCP-y)) 44UDHCP_OBJS=$(patsubst %.c,$(UDHCP_DIR)%.o, $(UDHCP-y))
53 45
54libraries-y+=$(UDHCP_DIR)$(UDHCP_AR) 46libraries-y+=$(UDHCP_DIR)$(UDHCP_AR)