summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-09-07 09:38:49 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:17:50 -0500
commit5ecf98cc189039023ff0a97f43eba7fb2c2cdc46 (patch)
tree159d620d5be074b14ea63c0539b3118bef3d4ffd
parentbda5c3c0e39de0ae2d4686a8746cc7ee1cc9d18f (diff)
downloadsamba-5ecf98cc189039023ff0a97f43eba7fb2c2cdc46.tar.gz
r18210: - reenable autodependencies
- and add -MT $@ to the dependency generation to notice changes in depdendecies of header files you may need a 'make clean' or at least you need to remove heimdal_build/replace.hd metze
-rw-r--r--source/build/m4/check_cc.m41
-rw-r--r--source/build/smb_build/summary.pm2
-rw-r--r--source/heimdal_build/config.h2
-rw-r--r--source/main.mk6
4 files changed, 5 insertions, 6 deletions
diff --git a/source/build/m4/check_cc.m4 b/source/build/m4/check_cc.m4
index 397a6dd0445..7f166ff641c 100644
--- a/source/build/m4/check_cc.m4
+++ b/source/build/m4/check_cc.m4
@@ -285,7 +285,6 @@ if test x$GNU_MAKE = x"yes"; then
new_make=yes
fi
fi
-new_make=no
AC_MSG_RESULT($new_make)
automatic_dependencies=no
AX_CFLAGS_GCC_OPTION([-M -MT conftest.d -MF conftest.o], [], [ automatic_dependencies=$new_make ], [])
diff --git a/source/build/smb_build/summary.pm b/source/build/smb_build/summary.pm
index e63fa1ccc13..83b6ed07571 100644
--- a/source/build/smb_build/summary.pm
+++ b/source/build/smb_build/summary.pm
@@ -53,7 +53,7 @@ sub show($$)
print "Developer mode: ".(enabled($config->{developer})?"yes":"no")."\n";
print "Automatic dependencies: ".
(enabled($config->{automatic_dependencies})
- ? "yes" : "no (disabled till make doesn't spin)(install GNU make >= 3.81)") .
+ ? "yes" : "no (install GNU make >= 3.81)") .
"\n";
print "Using shared libraries: " .
diff --git a/source/heimdal_build/config.h b/source/heimdal_build/config.h
index 40c3e6d771f..707e6f11278 100644
--- a/source/heimdal_build/config.h
+++ b/source/heimdal_build/config.h
@@ -10,6 +10,6 @@
#define KRB5
#include "include/config.h"
-#include "replace.h"
+#include "lib/replace/replace.h"
#endif
diff --git a/source/main.mk b/source/main.mk
index cb8dbc18485..84a8f60544e 100644
--- a/source/main.mk
+++ b/source/main.mk
@@ -317,15 +317,15 @@ unused_macros:
.c.d:
@echo "Generating dependencies for $<"
- @$(CC) -M -MG -MP -MT $(<:.c=.o) `$(PERL) $(srcdir)/script/cflags.pl $@` $(CFLAGS) $< -o $@
+ @$(CC) -M -MG -MP -MT $(<:.c=.o) -MT $@ `$(PERL) $(srcdir)/script/cflags.pl $@` $(CFLAGS) $< -o $@
.c.hd:
@echo "Generating host-compiler dependencies for $<"
- @$(CC) -M -MG -MP -MT $(<:.c=.ho) `$(PERL) $(srcdir)/script/cflags.pl $@` $(CFLAGS) $< -o $@
+ @$(CC) -M -MG -MP -MT $(<:.c=.ho) -MT $@ `$(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 $(CFLAGS) $< -o $@
+ @$(CC) -M -MG -MT include/includes.h.gch -MT $@ $(CFLAGS) $< -o $@
.c.o:
@if test -n "$(CC_CHECKER)"; then \