diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-05 10:17:08 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-05 10:17:08 +0000 |
commit | 7d219aab70e6951ab82c27c202cac05016696723 (patch) | |
tree | 4c0679bfa391f71aee9b51505a5d3dc8f60a0cf7 /init/Makefile.in | |
parent | 8f8f268cfdecb4cabeb2e649a73afc7a485aeff5 (diff) |
build system overhaul
Diffstat (limited to 'init/Makefile.in')
-rw-r--r-- | init/Makefile.in | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/init/Makefile.in b/init/Makefile.in deleted file mode 100644 index a48ead446..000000000 --- a/init/Makefile.in +++ /dev/null @@ -1,43 +0,0 @@ -# Makefile for busybox -# -# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org> -# -# Licensed under the GPL v2, see the file LICENSE in this tarball. - -INIT_AR:=init.a -ifndef $(INIT_DIR) -INIT_DIR:=$(top_builddir)/init/ -endif -srcdir=$(top_srcdir)/init - -INIT-y:= -INIT-$(CONFIG_HALT) += halt.o -INIT-$(CONFIG_INIT) += init.o -INIT-$(CONFIG_MESG) += mesg.o - -ifeq ($(strip $(CONFIG_HALT)),y) -CONFIG_INIT_SHARED=y -else -ifeq ($(strip $(CONFIG_INIT)),y) -CONFIG_INIT_SHARED=y -else -CONFIG_INIT_SHARED=n -endif -endif - -INIT-$(CONFIG_INIT_SHARED) += init_shared.o - -ifneq ($(strip $(INIT-y)),) -libraries-y+=$(INIT_DIR)$(INIT_AR) -endif - -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) - -$(INIT_DIR)$(INIT_AR): $(patsubst %,$(INIT_DIR)%, $(INIT-y)) - $(do_ar) - -$(INIT_DIR)%.o: $(srcdir)/%.c - $(compile.c) |