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 /debianutils | |
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 'debianutils')
-rw-r--r-- | debianutils/Makefile.in | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/debianutils/Makefile.in b/debianutils/Makefile.in index 2983565b8..ffdb7abdc 100644 --- a/debianutils/Makefile.in +++ b/debianutils/Makefile.in | |||
@@ -4,13 +4,9 @@ | |||
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 | DEBIANUTILS_AR:=debianutils.a | ||
8 | ifndef $(DEBIANUTILS_DIR) | ||
9 | DEBIANUTILS_DIR:=$(top_builddir)/debianutils/ | ||
10 | endif | ||
11 | srcdir=$(top_srcdir)/debianutils | 7 | srcdir=$(top_srcdir)/debianutils |
8 | objdir=$(top_builddir)/debianutils | ||
12 | 9 | ||
13 | DEBIANUTILS-y:= | ||
14 | DEBIANUTILS-$(CONFIG_MKTEMP) += mktemp.o | 10 | DEBIANUTILS-$(CONFIG_MKTEMP) += mktemp.o |
15 | DEBIANUTILS-$(CONFIG_PIPE_PROGRESS) += pipe_progress.o | 11 | DEBIANUTILS-$(CONFIG_PIPE_PROGRESS) += pipe_progress.o |
16 | DEBIANUTILS-$(CONFIG_READLINK) += readlink.o | 12 | DEBIANUTILS-$(CONFIG_READLINK) += readlink.o |
@@ -18,16 +14,10 @@ DEBIANUTILS-$(CONFIG_RUN_PARTS) += run_parts.o | |||
18 | DEBIANUTILS-$(CONFIG_START_STOP_DAEMON) += start_stop_daemon.o | 14 | DEBIANUTILS-$(CONFIG_START_STOP_DAEMON) += start_stop_daemon.o |
19 | DEBIANUTILS-$(CONFIG_WHICH) += which.o | 15 | DEBIANUTILS-$(CONFIG_WHICH) += which.o |
20 | 16 | ||
21 | ifneq ($(strip $(DEBIANUTILS-y)),) | ||
22 | libraries-y+=$(DEBIANUTILS_DIR)$(DEBIANUTILS_AR) | ||
23 | endif | ||
24 | DEBIANUTILS_SRC-y:=$(patsubst %.o,$(srcdir)/%.c,$(DEBIANUTILS-y)) | 17 | DEBIANUTILS_SRC-y:=$(patsubst %.o,$(srcdir)/%.c,$(DEBIANUTILS-y)) |
25 | DEBIANUTILS_SRC-a:=$(wildcard $(srcdir)/*.c) | 18 | DEBIANUTILS_SRC-a:=$(wildcard $(srcdir)/*.c) |
26 | APPLET_SRC-y+=$(DEBIANUTILS_SRC-y) | 19 | APPLET_SRC-y+=$(DEBIANUTILS_SRC-y) |
27 | APPLET_SRC-a+=$(DEBIANUTILS_SRC-a) | 20 | APPLET_SRC-a+=$(DEBIANUTILS_SRC-a) |
28 | 21 | ||
29 | $(DEBIANUTILS_DIR)$(DEBIANUTILS_AR): $(patsubst %,$(DEBIANUTILS_DIR)%, $(DEBIANUTILS-y)) | 22 | debianutils_OBJ:= $(patsubst %,$(objdir)/%,$(DEBIANUTILS-y)) |
30 | $(do_ar) | ||
31 | 23 | ||
32 | $(DEBIANUTILS_DIR)%.o: $(srcdir)/%.c | ||
33 | $(compile.c) | ||