diff options
| author | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-03-01 22:54:48 +0000 |
|---|---|---|
| committer | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-03-01 22:54:48 +0000 |
| commit | 3e42de836e4e08c6226383f84de0f734f96c8697 (patch) | |
| tree | 233c051da862595b6e473e832051708e2d9803cb /shell | |
| parent | b7c6f4ee19e3b2a465d2ef8c1ec3e51e6572e7ff (diff) | |
| download | busybox-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.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) | ||
