diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-03-01 22:54:48 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-03-01 22:54:48 +0000 |
commit | 5d26126b9e8fd6c6f5098dbaa2e5b9e2901749bf (patch) | |
tree | 233c051da862595b6e473e832051708e2d9803cb /shell | |
parent | 12c2429a4242a157217c5bc9673a531fa1e1de61 (diff) | |
download | busybox-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.in | 26 |
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 | ||
7 | SHELL_AR:=shell.a | ||
8 | ifndef $(SHELL_DIR) | ||
9 | SHELL_DIR:=$(top_builddir)/shell/ | ||
10 | endif | ||
11 | srcdir=$(top_srcdir)/shell | 7 | srcdir=$(top_srcdir)/shell |
8 | objdir=$(top_builddir)/shell | ||
12 | 9 | ||
13 | SHELLT-y:= | 10 | SHELL-$(CONFIG_ASH) += ash.o |
14 | SHELLT-$(CONFIG_ASH) += ash.o | 11 | SHELL-$(CONFIG_HUSH) += hush.o |
15 | SHELLT-$(CONFIG_HUSH) += hush.o | 12 | SHELL-$(CONFIG_LASH) += lash.o |
16 | SHELLT-$(CONFIG_LASH) += lash.o | 13 | SHELL-$(CONFIG_MSH) += msh.o |
17 | SHELLT-$(CONFIG_MSH) += msh.o | 14 | SHELL-$(CONFIG_FEATURE_COMMAND_EDITING) += cmdedit.o |
18 | SHELLT-$(CONFIG_FEATURE_COMMAND_EDITING) += cmdedit.o | ||
19 | 15 | ||
20 | ifneq ($(strip $(SHELLT-y)),) | ||
21 | libraries-y+=$(SHELL_DIR)$(SHELL_AR) | ||
22 | endif | ||
23 | 16 | ||
24 | SHELLT_SRC-y:=$(patsubst %.o,$(srcdir)/%.c,$(SHELLT-y)) | 17 | SHELLT_SRC-y:=$(patsubst %.o,$(srcdir)/%.c,$(SHELL-y)) |
25 | SHELLT_SRC-a:=$(wildcard $(srcdir)/*.c) | 18 | SHELLT_SRC-a:=$(wildcard $(srcdir)/*.c) |
26 | APPLET_SRC-y+=$(SHELLT_SRC-y) | 19 | APPLET_SRC-y+=$(SHELLT_SRC-y) |
27 | APPLET_SRC-a+=$(SHELLT_SRC-a) | 20 | APPLET_SRC-a+=$(SHELLT_SRC-a) |
28 | 21 | ||
29 | $(SHELL_DIR)$(SHELL_AR): $(patsubst %,$(SHELL_DIR)%, $(SHELLT-y)) | 22 | shell_OBJ:= $(patsubst %,$(objdir)/%,$(SHELL-y)) |
30 | $(do_ar) | ||
31 | 23 | ||
32 | $(SHELL_DIR)%.o: $(srcdir)/%.c | ||
33 | $(compile.c) | ||