aboutsummaryrefslogtreecommitdiff
path: root/busybox/networking/udhcp/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'busybox/networking/udhcp/Makefile.in')
-rw-r--r--busybox/networking/udhcp/Makefile.in54
1 files changed, 54 insertions, 0 deletions
diff --git a/busybox/networking/udhcp/Makefile.in b/busybox/networking/udhcp/Makefile.in
new file mode 100644
index 000000000..94750f693
--- /dev/null
+++ b/busybox/networking/udhcp/Makefile.in
@@ -0,0 +1,54 @@
1# Makefile for busybox
2#
3# Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
4#
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13# General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18#
19
20UDHCP_AR:=udhcp.a
21ifndef $(UDHCP_DIR)
22UDHCP_DIR:=$(top_builddir)/networking/udhcp/
23endif
24srcdir=$(top_srcdir)/networking/udhcp
25
26#ok, so I forgot how to do an or, but this is a quick and dirty hack
27ifeq ($(CONFIG_UDHCPC), y)
28CONFIG_UDHCP_SHARED=y
29else
30ifeq ($(CONFIG_UDHCPD), y)
31CONFIG_UDHCP_SHARED=y
32else
33CONFIG_UDHCP_SHARED=n
34endif
35endif
36
37UDHCP-y:=
38UDHCP-$(CONFIG_UDHCP_SHARED) += common.c options.c packet.c pidfile.c \
39 signalpipe.c socket.c
40UDHCP-$(CONFIG_UDHCPC) += dhcpc.c clientpacket.c clientsocket.c \
41 script.c
42UDHCP-$(CONFIG_UDHCPD) += dhcpd.c arpping.c files.c leases.c \
43 serverpacket.c static_leases.c
44UDHCP-$(CONFIG_DUMPLEASES) += dumpleases.c
45UDHCP_OBJS=$(patsubst %.c,$(UDHCP_DIR)%.o, $(UDHCP-y))
46
47libraries-y+=$(UDHCP_DIR)$(UDHCP_AR)
48
49$(UDHCP_DIR)$(UDHCP_AR): $(UDHCP_OBJS)
50 $(AR) -ro $@ $(UDHCP_OBJS)
51
52$(UDHCP_OBJS): $(UDHCP_DIR)%.o : $(srcdir)/%.c
53 $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -DIN_BUSYBOX -c $< -o $@
54