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-14 00:34:00 +05:30
|
|
|
INIT_AR:=init.a
|
|
|
|
ifndef $(INIT_DIR)
|
|
|
|
INIT_DIR:=$(top_builddir)/init/
|
|
|
|
endif
|
|
|
|
srcdir=$(top_srcdir)/init
|
2002-04-12 17:35:57 +05:30
|
|
|
|
2006-03-14 00:34:00 +05:30
|
|
|
INIT-y:=
|
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-03-14 00:34:00 +05:30
|
|
|
ifneq ($(strip $(INIT-y)),)
|
|
|
|
libraries-y+=$(INIT_DIR)$(INIT_AR)
|
|
|
|
endif
|
|
|
|
|
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-14 00:34:00 +05:30
|
|
|
$(INIT_DIR)$(INIT_AR): $(patsubst %,$(INIT_DIR)%, $(INIT-y))
|
|
|
|
$(do_ar)
|
2006-03-09 14:33:37 +05:30
|
|
|
|
2006-03-14 00:34:00 +05:30
|
|
|
$(INIT_DIR)%.o: $(srcdir)/%.c
|
|
|
|
$(compile.c)
|