aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-03-01 22:54:48 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-03-01 22:54:48 +0000
commit3e42de836e4e08c6226383f84de0f734f96c8697 (patch)
tree233c051da862595b6e473e832051708e2d9803cb /shell
parentb7c6f4ee19e3b2a465d2ef8c1ec3e51e6572e7ff (diff)
downloadbusybox-w32-3e42de836e4e08c6226383f84de0f734f96c8697.tar.gz
busybox-w32-3e42de836e4e08c6226383f84de0f734f96c8697.tar.bz2
busybox-w32-3e42de836e4e08c6226383f84de0f734f96c8697.zip
- fixes parallel builds (make -j)
- use less resources for the buildsystem itself git-svn-id: svn://busybox.net/trunk/busybox@14407 69ca8d6d-28ef-0310-b511-8ec308f3f277
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)