From: Eric Andersen Date: Mon, 30 Sep 2002 20:39:12 +0000 (-0000) Subject: Fix dependancy so we rebuild busybox.o, usage.o and busybox.o X-Git-Tag: 0_60_5~44 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a6f6e06107e69b79858acaa511c452a0a73cf207;p=oweals%2Fbusybox.git Fix dependancy so we rebuild busybox.o, usage.o and busybox.o whenever the config changes. -Erik --- 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)