aboutsummaryrefslogtreecommitdiff
path: root/applets
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-09-30 20:39:12 +0000
committerEric Andersen <andersen@codepoet.org>2002-09-30 20:39:12 +0000
commita6f6e06107e69b79858acaa511c452a0a73cf207 (patch)
treeb152e4c8072fbe4e975060ec5db918622707005d /applets
parentad082987d0db7dbc5c9f5b9fd3a0e6030da663f2 (diff)
downloadbusybox-a6f6e06107e69b79858acaa511c452a0a73cf207.tar.gz
Fix dependancy so we rebuild busybox.o, usage.o and busybox.o
whenever the config changes. -Erik
Diffstat (limited to 'applets')
-rw-r--r--applets/Makefile.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/applets/Makefile.in b/applets/Makefile.in
index f198a1447..eaa043e61 100644
--- a/applets/Makefile.in
+++ b/applets/Makefile.in
@@ -25,8 +25,12 @@ endif
APPLET_SRC:=applets.c busybox.c usage.c
APPLET_OBJ:= $(patsubst %.c,$(APPLETS_DIR)%.o, $(APPLET_SRC))
+
+
libraries-y+=$(APPLETS_DIR)$(APPLETS_AR)
+$(APPLET_OBJ): $(TOPDIR).config
+
$(APPLETS_DIR)$(APPLETS_AR): $(APPLET_OBJ)
$(AR) -ro $@ $(APPLET_OBJ)