summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-09-06 01:31:39 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:17:35 -0500
commita83286d91cd3ff61b276955b1e0998f9e8ebc527 (patch)
tree081d262da177a82ace417c80034cbe11bf24682f
parent4a0261cb294c7b666cb6759074aa1a903c5b1005 (diff)
downloadsamba-a83286d91cd3ff61b276955b1e0998f9e8ebc527.tar.gz
samba-a83286d91cd3ff61b276955b1e0998f9e8ebc527.tar.bz2
samba-a83286d91cd3ff61b276955b1e0998f9e8ebc527.zip
r18120: Remove generating dependencies for .d files for now as this was
causing make to loop. (This used to be commit 35c8d39e6e30e3ba3dcf1db34c6256489a1a2f46)
-rw-r--r--source4/main.mk6
1 files 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 \