summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-03-01 22:54:48 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-03-01 22:54:48 +0000
commit5d26126b9e8fd6c6f5098dbaa2e5b9e2901749bf (patch)
tree233c051da862595b6e473e832051708e2d9803cb /shell
parent12c2429a4242a157217c5bc9673a531fa1e1de61 (diff)
downloadbusybox-w32-5d26126b9e8fd6c6f5098dbaa2e5b9e2901749bf.tar.gz
busybox-w32-5d26126b9e8fd6c6f5098dbaa2e5b9e2901749bf.tar.bz2
busybox-w32-5d26126b9e8fd6c6f5098dbaa2e5b9e2901749bf.zip
- fixes parallel builds (make -j)
- use less resources for the buildsystem itself
Diffstat (limited to 'shell')
-rw-r--r--shell/Makefile.in26
1 files changed, 8 insertions, 18 deletions
diff --git a/shell/Makefile.in b/shell/Makefile.in
index fcd93f345..43e2acd09 100644
--- a/shell/Makefile.in
+++ b/shell/Makefile.in
@@ -4,30 +4,20 @@
4# 4#
5# Licensed under the GPL v2, see the file LICENSE in this tarball. 5# Licensed under the GPL v2, see the file LICENSE in this tarball.
6 6
7SHELL_AR:=shell.a
8ifndef $(SHELL_DIR)
9SHELL_DIR:=$(top_builddir)/shell/
10endif
11srcdir=$(top_srcdir)/shell 7srcdir=$(top_srcdir)/shell
8objdir=$(top_builddir)/shell
12 9
13SHELLT-y:= 10SHELL-$(CONFIG_ASH) += ash.o
14SHELLT-$(CONFIG_ASH) += ash.o 11SHELL-$(CONFIG_HUSH) += hush.o
15SHELLT-$(CONFIG_HUSH) += hush.o 12SHELL-$(CONFIG_LASH) += lash.o
16SHELLT-$(CONFIG_LASH) += lash.o 13SHELL-$(CONFIG_MSH) += msh.o
17SHELLT-$(CONFIG_MSH) += msh.o 14SHELL-$(CONFIG_FEATURE_COMMAND_EDITING) += cmdedit.o
18SHELLT-$(CONFIG_FEATURE_COMMAND_EDITING) += cmdedit.o
19 15
20ifneq ($(strip $(SHELLT-y)),)
21libraries-y+=$(SHELL_DIR)$(SHELL_AR)
22endif
23 16
24SHELLT_SRC-y:=$(patsubst %.o,$(srcdir)/%.c,$(SHELLT-y)) 17SHELLT_SRC-y:=$(patsubst %.o,$(srcdir)/%.c,$(SHELL-y))
25SHELLT_SRC-a:=$(wildcard $(srcdir)/*.c) 18SHELLT_SRC-a:=$(wildcard $(srcdir)/*.c)
26APPLET_SRC-y+=$(SHELLT_SRC-y) 19APPLET_SRC-y+=$(SHELLT_SRC-y)
27APPLET_SRC-a+=$(SHELLT_SRC-a) 20APPLET_SRC-a+=$(SHELLT_SRC-a)
28 21
29$(SHELL_DIR)$(SHELL_AR): $(patsubst %,$(SHELL_DIR)%, $(SHELLT-y)) 22shell_OBJ:= $(patsubst %,$(objdir)/%,$(SHELL-y))
30 $(do_ar)
31 23
32$(SHELL_DIR)%.o: $(srcdir)/%.c
33 $(compile.c)