aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-10-05 14:52:21 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-10-05 14:52:21 +0000
commitf5fe5b8632284670c4b16eccb34be770ab43402d (patch)
tree70055af6074f198a9f6122e653119a36feecf53b
parent213947900a13135ff9fdf70729464efff823a2bb (diff)
downloadbusybox-w32-f5fe5b8632284670c4b16eccb34be770ab43402d.tar.gz
busybox-w32-f5fe5b8632284670c4b16eccb34be770ab43402d.tar.bz2
busybox-w32-f5fe5b8632284670c4b16eccb34be770ab43402d.zip
- remove explicit dependency of busybox.o and applets.o and usage.h from the
Makefile. Instead fix the invocation of bb_mkdep. git-svn-id: svn://busybox.net/trunk/busybox@11774 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--Makefile2
-rw-r--r--applets/Makefile.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index bd8e47c6d..4f052ff1f 100644
--- a/Makefile
+++ b/Makefile
@@ -275,7 +275,7 @@ depend dep $(top_builddir)/.depend: .depend
275.depend: scripts/bb_mkdep $(DEP_INCLUDES) 275.depend: scripts/bb_mkdep $(DEP_INCLUDES)
276 @rm -f .depend 276 @rm -f .depend
277 @mkdir -p include/config 277 @mkdir -p include/config
278 scripts/bb_mkdep -c include/config.h -c include/bb_config.h $(top_srcdir)/ > $@.tmp 278 scripts/bb_mkdep -c include/config.h -c include/bb_config.h -I $(top_srcdir)/include $(top_srcdir)/ > $@.tmp
279 mv $@.tmp $@ 279 mv $@.tmp $@
280 280
281include/config.h: .config 281include/config.h: .config
diff --git a/applets/Makefile.in b/applets/Makefile.in
index ddbc668dc..511652a93 100644
--- a/applets/Makefile.in
+++ b/applets/Makefile.in
@@ -18,7 +18,7 @@ libraries-y+=$(APPLETS_DIR)$(APPLETS_AR)
18$(APPLETS_DIR)$(APPLETS_AR): $(APPLET_OBJ) 18$(APPLETS_DIR)$(APPLETS_AR): $(APPLET_OBJ)
19 $(AR) $(ARFLAGS) $@ $(APPLET_OBJ) 19 $(AR) $(ARFLAGS) $@ $(APPLET_OBJ)
20 20
21$(APPLET_OBJ): $(top_builddir)/.config $(top_srcdir)/include/usage.h 21$(APPLET_OBJ): $(top_builddir)/.config
22$(APPLET_OBJ): $(APPLETS_DIR)%.o: $(srcdir)/%.c 22$(APPLET_OBJ): $(APPLETS_DIR)%.o: $(srcdir)/%.c
23 $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $< 23 $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
24 24