diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-03-19 02:23:52 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:58:45 -0500 |
commit | c84cfc0ecc46ef05dc7997a128ba9486516cb112 (patch) | |
tree | b15c6874419ac593174973ec49fda9d78322be9b /source4/lib/tdr | |
parent | 781d122fb646aef0d20f033cacb677ea9e89d2ff (diff) | |
download | samba-c84cfc0ecc46ef05dc7997a128ba9486516cb112.tar.gz samba-c84cfc0ecc46ef05dc7997a128ba9486516cb112.tar.bz2 samba-c84cfc0ecc46ef05dc7997a128ba9486516cb112.zip |
r14554: Write out header dependencies. This means all C files affected will be
rebuilt when a header file is changed. It also means parallel builds work now.
It will take a minute or so to generate all the dependency information,
but there should be no need to rebuild that information later on, unless
a file changes.
This behaviour is only enabled when building in developer mode
(--enable-developer) and requires a GNU make (or compatible). In all other
cases, the file 'static_deps.mk' is included, which contains some basic
hardcoded dependency information.
(This used to be commit eb435386f015ce1d89eb6f7e7837622ebd9e1951)
Diffstat (limited to 'source4/lib/tdr')
-rw-r--r-- | source4/lib/tdr/tdr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/tdr/tdr.h b/source4/lib/tdr/tdr.h index 4c0280d9d6..dfb52c8525 100644 --- a/source4/lib/tdr/tdr.h +++ b/source4/lib/tdr/tdr.h @@ -62,6 +62,6 @@ struct tdr_print { typedef NTSTATUS (*tdr_push_fn_t) (struct tdr_push *, const void *); typedef NTSTATUS (*tdr_pull_fn_t) (struct tdr_pull *, TALLOC_CTX *, void *); -#include "tdr/tdr_proto.h" +#include "lib/tdr/tdr_proto.h" #endif /* __TDR_H__ */ |