blob: 6264710db244c59b2215396d9a69a27831f7228f [file] [log] [blame]
Eric Andersen85208e22002-04-12 12:05:57 +00001# Makefile for busybox
2#
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003# Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersen85208e22002-04-12 12:05:57 +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
20INIT_AR:=init.a
21ifndef $(INIT_DIR)
22INIT_DIR:=$(TOPDIR)init/
23endif
24
25INIT-y:=
26INIT-$(CONFIG_HALT) += halt.o
27INIT-$(CONFIG_INIT) += init.o
Glenn L McGrath061c9002002-09-16 04:21:46 +000028INIT-$(CONFIG_MESG) += mesg.o
Eric Andersen85208e22002-04-12 12:05:57 +000029INIT-$(CONFIG_POWEROFF) += poweroff.o
30INIT-$(CONFIG_REBOOT) += reboot.o
Eric Andersen85208e22002-04-12 12:05:57 +000031
Eric Andersenb01ed652003-06-27 17:08:15 +000032ifeq ($(CONFIG_HALT), y)
33CONFIG_INIT_SHARED=y
34else
35ifeq ($(CONFIG_INIT), y)
36CONFIG_INIT_SHARED=y
37else
38ifeq ($(CONFIG_POWEROFF), y)
39CONFIG_INIT_SHARED=y
40else
41ifeq ($(CONFIG_REBOOT), y)
42CONFIG_INIT_SHARED=y
43else
44CONFIG_INIT_SHARED=n
45endif
46endif
47endif
48endif
49
50ifeq ($(CONFIG_INIT_SHARED), y)
51INIT-$(CONFIG_INIT_SHARED) += init_shared.o
52endif
53
Eric Andersen85208e22002-04-12 12:05:57 +000054libraries-y+=$(INIT_DIR)$(INIT_AR)
55
56$(INIT_DIR)$(INIT_AR): $(patsubst %,$(INIT_DIR)%, $(INIT-y))
57 $(AR) -ro $@ $(patsubst %,$(INIT_DIR)%, $(INIT-y))
58