2002-04-12 17:35:57 +05:30
|
|
|
# Makefile for busybox
|
|
|
|
#
|
2005-09-24 11:31:57 +05:30
|
|
|
# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
|
2002-04-12 17:35:57 +05:30
|
|
|
#
|
2005-09-24 11:31:57 +05:30
|
|
|
# Licensed under the GPL v2, see the file LICENSE in this tarball.
|
2002-04-12 17:35:57 +05:30
|
|
|
|
2006-03-09 14:33:37 +05:30
|
|
|
srcdir:=$(top_srcdir)/init
|
|
|
|
objdir:=$(top_builddir)/init
|
2002-04-12 17:35:57 +05:30
|
|
|
|
|
|
|
INIT-$(CONFIG_HALT) += halt.o
|
|
|
|
INIT-$(CONFIG_INIT) += init.o
|
2002-09-16 09:51:46 +05:30
|
|
|
INIT-$(CONFIG_MESG) += mesg.o
|
2002-04-12 17:35:57 +05:30
|
|
|
|
2006-01-15 19:34:57 +05:30
|
|
|
ifeq ($(strip $(CONFIG_HALT)),y)
|
2003-06-27 22:38:15 +05:30
|
|
|
CONFIG_INIT_SHARED=y
|
|
|
|
else
|
2006-01-15 19:34:57 +05:30
|
|
|
ifeq ($(strip $(CONFIG_INIT)),y)
|
2003-06-27 22:38:15 +05:30
|
|
|
CONFIG_INIT_SHARED=y
|
|
|
|
else
|
|
|
|
CONFIG_INIT_SHARED=n
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
INIT-$(CONFIG_INIT_SHARED) += init_shared.o
|
|
|
|
|
2006-01-15 19:34:57 +05:30
|
|
|
INIT_SRC-y:=$(patsubst %.o,$(srcdir)/%.c,$(INIT-y))
|
|
|
|
INIT_SRC-a:=$(wildcard $(srcdir)/*.c)
|
|
|
|
APPLET_SRC-y+=$(INIT_SRC-y)
|
|
|
|
APPLET_SRC-a+=$(INIT_SRC-a)
|
|
|
|
|
2006-03-02 04:24:48 +05:30
|
|
|
init_OBJ:= $(patsubst %,$(objdir)/%,$(INIT-y))
|
2002-04-12 17:35:57 +05:30
|
|
|
|
2006-03-09 14:33:37 +05:30
|
|
|
$(init_OBJ): $(objdir)/%.o: $(srcdir)/%.c
|
|
|
|
$(objdir)/init.a: $(init_OBJ)
|
|
|
|
libraries-y:=$(libraries-y) $(objdir)/init.a
|
|
|
|
|