blob: 1b13f693b2bfc2ee035193705d2a1d112ba91a3d [file] [log] [blame]
Eric Andersen85208e22002-04-12 12:05:57 +00001# Makefile for busybox
2#
Eric Andersencb81e642003-07-14 21:21:08 +00003# Copyright (C) 1999-2003 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
Glenn L McGrath1e11c342003-05-11 14:52:39 +000029INIT-$(CONFIG_MINIT) += minit.o
30INIT-$(CONFIG_MSVC) += msvc.o
31INIT-$(CONFIG_PIDFILEHACK) += pidfilehack.o
Eric Andersen85208e22002-04-12 12:05:57 +000032INIT-$(CONFIG_POWEROFF) += poweroff.o
33INIT-$(CONFIG_REBOOT) += reboot.o
Eric Andersen85208e22002-04-12 12:05:57 +000034
Eric Andersenb01ed652003-06-27 17:08:15 +000035ifeq ($(CONFIG_HALT), y)
36CONFIG_INIT_SHARED=y
37else
38ifeq ($(CONFIG_INIT), y)
39CONFIG_INIT_SHARED=y
40else
41ifeq ($(CONFIG_POWEROFF), y)
42CONFIG_INIT_SHARED=y
43else
44ifeq ($(CONFIG_REBOOT), y)
45CONFIG_INIT_SHARED=y
46else
47CONFIG_INIT_SHARED=n
48endif
49endif
50endif
51endif
52
53ifeq ($(CONFIG_INIT_SHARED), y)
54INIT-$(CONFIG_INIT_SHARED) += init_shared.o
55endif
56
Eric Andersen85208e22002-04-12 12:05:57 +000057libraries-y+=$(INIT_DIR)$(INIT_AR)
58
59$(INIT_DIR)$(INIT_AR): $(patsubst %,$(INIT_DIR)%, $(INIT-y))
60 $(AR) -ro $@ $(patsubst %,$(INIT_DIR)%, $(INIT-y))
61