diff options
Diffstat (limited to 'networking/udhcp/Makefile.in')
-rw-r--r-- | networking/udhcp/Makefile.in | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/networking/udhcp/Makefile.in b/networking/udhcp/Makefile.in new file mode 100644 index 000000000..d76715baa --- /dev/null +++ b/networking/udhcp/Makefile.in | |||
@@ -0,0 +1,46 @@ | |||
1 | # Makefile for busybox | ||
2 | # | ||
3 | # Copyright (C) 1999-2002 Erik Andersen <andersee@debian.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 | |||
20 | UDHCP_AR:=udhcp.a | ||
21 | ifndef $(UDHCP_DIR) | ||
22 | UDHCP_DIR:=$(TOPDIR)networking/udhcp/ | ||
23 | endif | ||
24 | |||
25 | #ok, so I forgot how to do an or, but this is a quick and dirty hack | ||
26 | ifeq ($(CONFIG_UDHCPC), y) | ||
27 | CONFIG_UDHCP_SHARED=y | ||
28 | else | ||
29 | ifeq ($(CONFIG_UDHCPD), y) | ||
30 | CONFIG_UDHCP_SHARED=y | ||
31 | else | ||
32 | CONFIG_UDHCP_SHARED=n | ||
33 | endif | ||
34 | endif | ||
35 | |||
36 | UDHCP-y:= | ||
37 | UDHCP-$(CONFIG_UDHCP_SHARED) += options.o socket.o packet.o pidfile.o | ||
38 | UDHCP-$(CONFIG_UDHCPC) += dhcpc.o clientpacket.o script.o | ||
39 | UDHCP-$(CONFIG_UDHCPD) += dhcpd.o arpping.o files.o leases.o serverpacket.o | ||
40 | UDHCP-$(CONFIG_DUMPLEASES) += dumpleases.o | ||
41 | |||
42 | libraries-y+=$(UDHCP_DIR)$(UDHCP_AR) | ||
43 | |||
44 | $(UDHCP_DIR)$(UDHCP_AR): $(patsubst %,$(UDHCP_DIR)%, $(UDHCP-y)) | ||
45 | $(AR) -ro $@ $(patsubst %,$(UDHCP_DIR)%, $(UDHCP-y)) | ||
46 | |||