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.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/networking/udhcp/Makefile.in b/networking/udhcp/Makefile.in
index df32247c6..77c4b720a 100644
--- a/networking/udhcp/Makefile.in
+++ b/networking/udhcp/Makefile.in
@@ -12,10 +12,10 @@ endif
12srcdir=$(top_srcdir)/networking/udhcp 12srcdir=$(top_srcdir)/networking/udhcp
13 13
14#ok, so I forgot how to do an or, but this is a quick and dirty hack 14#ok, so I forgot how to do an or, but this is a quick and dirty hack
15ifeq ($(strip $(CONFIG_UDHCPC)),y) 15ifeq ($(strip $(CONFIG_APP_UDHCPC)),y)
16CONFIG_UDHCP_SHARED=y 16CONFIG_UDHCP_SHARED=y
17else 17else
18ifeq ($(strip $(CONFIG_UDHCPD)),y) 18ifeq ($(strip $(CONFIG_APP_UDHCPD)),y)
19CONFIG_UDHCP_SHARED=y 19CONFIG_UDHCP_SHARED=y
20else 20else
21CONFIG_UDHCP_SHARED=n 21CONFIG_UDHCP_SHARED=n
@@ -25,11 +25,11 @@ endif
25UDHCP-y:= 25UDHCP-y:=
26UDHCP-$(CONFIG_UDHCP_SHARED) += common.c options.c packet.c pidfile.c \ 26UDHCP-$(CONFIG_UDHCP_SHARED) += common.c options.c packet.c pidfile.c \
27 signalpipe.c socket.c 27 signalpipe.c socket.c
28UDHCP-$(CONFIG_UDHCPC) += dhcpc.c clientpacket.c clientsocket.c \ 28UDHCP-$(CONFIG_APP_UDHCPC) += dhcpc.c clientpacket.c clientsocket.c \
29 script.c 29 script.c
30UDHCP-$(CONFIG_UDHCPD) += dhcpd.c arpping.c files.c leases.c \ 30UDHCP-$(CONFIG_APP_UDHCPD) += dhcpd.c arpping.c files.c leases.c \
31 serverpacket.c static_leases.c 31 serverpacket.c static_leases.c
32UDHCP-$(CONFIG_DUMPLEASES) += dumpleases.c 32UDHCP-$(CONFIG_APP_DUMPLEASES) += dumpleases.c
33UDHCP_OBJS:=$(patsubst %.c,$(UDHCP_DIR)%.o, $(UDHCP-y)) 33UDHCP_OBJS:=$(patsubst %.c,$(UDHCP_DIR)%.o, $(UDHCP-y))
34 34
35ifneq ($(strip $(UDHCP-y)),) 35ifneq ($(strip $(UDHCP-y)),)