diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-09-24 06:15:23 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-09-24 06:15:23 +0000 |
commit | 016d6289a16a738bc4f13a45ba273738b27a6248 (patch) | |
tree | c3505309b2d962526444dfae81d181b10d5b8154 | |
parent | 0f8a63896e8e932112b5a34765770522cfa07285 (diff) | |
download | busybox-w32-016d6289a16a738bc4f13a45ba273738b27a6248.tar.gz busybox-w32-016d6289a16a738bc4f13a45ba273738b27a6248.tar.bz2 busybox-w32-016d6289a16a738bc4f13a45ba273738b27a6248.zip |
fix parallel building again
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -110,6 +110,7 @@ $(ALL_MAKEFILES): %/Makefile: $(top_srcdir)/%/Makefile | |||
110 | include $(patsubst %,%/Makefile.in, $(SRC_DIRS)) | 110 | include $(patsubst %,%/Makefile.in, $(SRC_DIRS)) |
111 | -include $(top_builddir)/.depend | 111 | -include $(top_builddir)/.depend |
112 | 112 | ||
113 | %.o: .depend | ||
113 | busybox: $(ALL_MAKEFILES) .depend $(libraries-y) | 114 | busybox: $(ALL_MAKEFILES) .depend $(libraries-y) |
114 | $(CC) $(LDFLAGS) -o $@ -Wl,--start-group $(libraries-y) $(LIBRARIES) -Wl,--end-group | 115 | $(CC) $(LDFLAGS) -o $@ -Wl,--start-group $(libraries-y) $(LIBRARIES) -Wl,--end-group |
115 | $(STRIPCMD) $@ | 116 | $(STRIPCMD) $@ |
@@ -196,7 +197,8 @@ endif | |||
196 | .depend: scripts/bb_mkdep $(DEP_INCLUDES) | 197 | .depend: scripts/bb_mkdep $(DEP_INCLUDES) |
197 | @rm -f .depend | 198 | @rm -f .depend |
198 | @mkdir -p include/config | 199 | @mkdir -p include/config |
199 | scripts/bb_mkdep -c include/config.h -c include/bb_config.h > $@ | 200 | scripts/bb_mkdep -c include/config.h -c include/bb_config.h > $@.tmp |
201 | mv $@.tmp $@ | ||
200 | 202 | ||
201 | include/config.h: .config | 203 | include/config.h: .config |
202 | @if [ ! -x $(top_builddir)/scripts/config/conf ] ; then \ | 204 | @if [ ! -x $(top_builddir)/scripts/config/conf ] ; then \ |