blob: 1eee3d18a15a7a1e2e6fa209165a3f173dd592f0 [file] [log] [blame]
Eric Andersen85208e22002-04-12 12:05:57 +00001# 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
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
34INIT-$(CONFIG_START_STOP_DAEMON) += start_stop_daemon.o
Eric Andersen85208e22002-04-12 12:05:57 +000035
Eric Andersenb01ed652003-06-27 17:08:15 +000036ifeq ($(CONFIG_HALT), y)
37CONFIG_INIT_SHARED=y
38else
39ifeq ($(CONFIG_INIT), y)
40CONFIG_INIT_SHARED=y
41else
42ifeq ($(CONFIG_POWEROFF), y)
43CONFIG_INIT_SHARED=y
44else
45ifeq ($(CONFIG_REBOOT), y)
46CONFIG_INIT_SHARED=y
47else
48CONFIG_INIT_SHARED=n
49endif
50endif
51endif
52endif
53
54ifeq ($(CONFIG_INIT_SHARED), y)
55INIT-$(CONFIG_INIT_SHARED) += init_shared.o
56endif
57
Eric Andersen85208e22002-04-12 12:05:57 +000058libraries-y+=$(INIT_DIR)$(INIT_AR)
59
60$(INIT_DIR)$(INIT_AR): $(patsubst %,$(INIT_DIR)%, $(INIT-y))
61 $(AR) -ro $@ $(patsubst %,$(INIT_DIR)%, $(INIT-y))
62