aboutsummaryrefslogtreecommitdiff
path: root/applets
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-09-30 20:39:12 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-09-30 20:39:12 +0000
commitf41de5a7d48afe17882100c94eee4fd5a7016b5f (patch)
treeb152e4c8072fbe4e975060ec5db918622707005d /applets
parent22fbf40482871823d4d2ef0dc9c6d279fc5d6ded (diff)
downloadbusybox-w32-f41de5a7d48afe17882100c94eee4fd5a7016b5f.tar.gz
busybox-w32-f41de5a7d48afe17882100c94eee4fd5a7016b5f.tar.bz2
busybox-w32-f41de5a7d48afe17882100c94eee4fd5a7016b5f.zip
Fix dependancy so we rebuild busybox.o, usage.o and busybox.o
whenever the config changes. -Erik git-svn-id: svn://busybox.net/trunk/busybox@5612 69ca8d6d-28ef-0310-b511-8ec308f3f277
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
25APPLET_SRC:=applets.c busybox.c usage.c 25APPLET_SRC:=applets.c busybox.c usage.c
26APPLET_OBJ:= $(patsubst %.c,$(APPLETS_DIR)%.o, $(APPLET_SRC)) 26APPLET_OBJ:= $(patsubst %.c,$(APPLETS_DIR)%.o, $(APPLET_SRC))
27 27
28
29
28libraries-y+=$(APPLETS_DIR)$(APPLETS_AR) 30libraries-y+=$(APPLETS_DIR)$(APPLETS_AR)
29 31
32$(APPLET_OBJ): $(TOPDIR).config
33
30$(APPLETS_DIR)$(APPLETS_AR): $(APPLET_OBJ) 34$(APPLETS_DIR)$(APPLETS_AR): $(APPLET_OBJ)
31 $(AR) -ro $@ $(APPLET_OBJ) 35 $(AR) -ro $@ $(APPLET_OBJ)
32 36