From fddbb7cd1f74609845ad37d5e2ced81b5dcf2585 Mon Sep 17 00:00:00 2001 From: hno <> Date: Fri, 1 Sep 2000 06:39:45 +0000 Subject: [PATCH] Minor correction in the dependency handling of the "all" target. In some cases you had to run make twice to get all parts properly rebuilt. --- src/Makefile.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Makefile.in b/src/Makefile.in index 780f5cfa09..bf79246f09 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -1,7 +1,7 @@ # # Makefile for the Squid Object Cache server # -# $Id: Makefile.in,v 1.192 2000/08/19 14:23:19 hno Exp $ +# $Id: Makefile.in,v 1.193 2000/09/01 00:39:45 hno Exp $ # # Uncomment and customize the following to suit your needs: # @@ -197,11 +197,12 @@ LEAKFINDER_OBJS = \ DEFAULTS = \ -DDEFAULT_CONFIG_FILE=\"$(DEFAULT_CONFIG_FILE)\" -all: squid.conf $(PROGS) $(UTILS) $(SUID_UTILS) $(CGIPROGS) +all: squid.conf @for dir in $(SUBDIRS); do \ echo "Making $@ in $$dir..."; \ (cd $$dir ; $(MAKE) $(MFLAGS) prefix="$(prefix)" $@) || exit 1; \ done + @$(MAKE) $(MFLAGS) $(PROGS) $(UTILS) $(SUID_UTILS) $(CGIPROGS) $(OBJS): $(top_srcdir)/include/version.h ../include/autoconf.h -- 2.47.2