blob: 502aa1c3ee6c9123a08e03895d4050acdda8affe [file] [log] [blame]
Russ Dill61fb4892002-10-14 21:41:28 +00001# Makefile for busybox
2#
Eric Andersencb81e642003-07-14 21:21:08 +00003# Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
Russ Dill61fb4892002-10-14 21:41:28 +00004#
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:=$(TOPDIR)networking/udhcp/
23endif
24
25#ok, so I forgot how to do an or, but this is a quick and dirty hack
26ifeq ($(CONFIG_UDHCPC), y)
27CONFIG_UDHCP_SHARED=y
28else
29ifeq ($(CONFIG_UDHCPD), y)
30CONFIG_UDHCP_SHARED=y
31else
32CONFIG_UDHCP_SHARED=n
33endif
34endif
35
Glenn L McGrath24833432003-06-10 17:22:49 +000036ifeq ($(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
Russ Dill61fb4892002-10-14 21:41:28 +000046UDHCP-y:=
Glenn L McGrath24833432003-06-10 17:22:49 +000047UDHCP-$(CONFIG_UDHCP_SHARED) += options.c socket.c packet.c common.c
Eric Andersen1f1c3f92002-12-11 22:45:33 +000048UDHCP-$(CONFIG_UDHCPC) += dhcpc.c clientpacket.c script.c
49UDHCP-$(CONFIG_UDHCPD) += dhcpd.c arpping.c files.c leases.c serverpacket.c
50UDHCP-$(CONFIG_DUMPLEASES) += dumpleases.c
Glenn L McGrath24833432003-06-10 17:22:49 +000051UDHCP-$(CONFIG_UDHCP_LEASES_FILE) += leases_file.c
Eric Andersen1f1c3f92002-12-11 22:45:33 +000052UDHCP_OBJS=$(patsubst %.c,$(UDHCP_DIR)%.o, $(UDHCP-y))
Russ Dill61fb4892002-10-14 21:41:28 +000053
54libraries-y+=$(UDHCP_DIR)$(UDHCP_AR)
55
Eric Andersen1f1c3f92002-12-11 22:45:33 +000056$(UDHCP_DIR)$(UDHCP_AR): $(UDHCP_OBJS)
57 $(AR) -ro $@ $(UDHCP_OBJS)
Russ Dill61fb4892002-10-14 21:41:28 +000058
Eric Andersenb2bfd342002-12-11 22:59:39 +000059$(UDHCP_OBJS): %.o : %.c
Glenn L McGrath24833432003-06-10 17:22:49 +000060 $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c $< -o $@
Eric Andersenb2bfd342002-12-11 22:59:39 +000061