From: Martin Mares Date: Tue, 12 Jan 1999 20:36:18 +0000 (+0000) Subject: Fixed trivial bug in naming of `depend' file. Argh. X-Git-Tag: v1.2.0~1741 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cceb3e7d2fafcf3acee1db1d762ed697863b6f3b;p=thirdparty%2Fbird.git Fixed trivial bug in naming of `depend' file. Argh. --- diff --git a/tools/Rules.in b/tools/Rules.in index 56c0903b6..fed8ecbec 100644 --- a/tools/Rules.in +++ b/tools/Rules.in @@ -54,13 +54,13 @@ all.o: $(objs) endif %.o: $(src-path)%.c - $(CC) $(CFLAGS) -o $@ -c $^ + $(CC) $(CFLAGS) -o $@ -c $< depend: gcc $(CPPFLAGS) -MM $(addprefix $(src-path),$(source)) >depend -ifneq ($(wildcard .depend),) -include .depend +ifneq ($(wildcard depend),) +include depend endif endif