From a83286d91cd3ff61b276955b1e0998f9e8ebc527 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 6 Sep 2006 01:31:39 +0000 Subject: r18120: Remove generating dependencies for .d files for now as this was causing make to loop. (This used to be commit 35c8d39e6e30e3ba3dcf1db34c6256489a1a2f46) --- source4/main.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source4/main.mk b/source4/main.mk index 79876854f1..6be785e0ce 100644 --- a/source4/main.mk +++ b/source4/main.mk @@ -317,15 +317,15 @@ unused_macros: .c.d: @echo "Generating dependencies for $<" - @$(CC) -M -MG -MP -MT $(<:.c=.o) -MT $@ `$(PERL) $(srcdir)/script/cflags.pl $@` $(CFLAGS) $< -o $@ + @$(CC) -M -MG -MP -MT $(<:.c=.o) `$(PERL) $(srcdir)/script/cflags.pl $@` $(CFLAGS) $< -o $@ .c.hd: @echo "Generating host-compiler dependencies for $<" - @$(CC) -M -MG -MP -MT $(<:.c=.ho) -MT $@ `$(PERL) $(srcdir)/script/cflags.pl $@` $(CFLAGS) $< -o $@ + @$(CC) -M -MG -MP -MT $(<:.c=.ho) `$(PERL) $(srcdir)/script/cflags.pl $@` $(CFLAGS) $< -o $@ include/includes.d: include/includes.h @echo "Generating dependencies for $<" - @$(CC) -M -MG -MT include/includes.h.gch -MT $@ $(CFLAGS) $< -o $@ + @$(CC) -M -MG -MT include/includes.h.gch $(CFLAGS) $< -o $@ .c.o: @if test -n "$(CC_CHECKER)"; then \ -- cgit