]> git.notmuchmail.org Git - notmuch/commit
Makefile: Silence compiler errors during dependency generation.
authorCarl Worth <cworth@cworth.org>
Fri, 4 Dec 2009 23:37:39 +0000 (15:37 -0800)
committerCarl Worth <cworth@cworth.org>
Fri, 4 Dec 2009 23:40:54 +0000 (15:40 -0800)
commit40e584ecfc2da7b443ceebeabe064c096b3ab999
treeca63cf32a8912ae8eeac16ab10d64c5a57f7a12d
parent4b0327004a3f9a36352b81a5b778740d68bf3078
Makefile: Silence compiler errors during dependency generation.

We have a bootstrapping issue with our dependency generation. When the
Makefile.config doesn't exist yet, the complete compilation flags are
not yet available for passing to the compiler to generate the
dependencies.

But we don't have explicit rules to create these dependency files,
(just the implicit rule that is created by the -include), so we can't
control when make will attempt to create them.

We do have a dependency of the dependency files on Makefile.config, so
make should eventually call the compiler with the correct flags and
everything should be good. So in the meantime, silence any complaints.
Makefile