Include the *_sha1.i files in their own *_codedigest.c files.

This way we do not need to rebuild util.c and/or config.c whenever
any unrelated source file in src/common or src/or has changed.
This commit is contained in:
Nick Mathewson
2009-05-08 12:35:36 -04:00
parent b9b16ef9a5
commit fdbdb4dc15
7 changed files with 29 additions and 16 deletions
+10
View File
@@ -0,0 +1,10 @@
const char *tor_get_digests(void);
const char *
tor_get_digests(void)
{
return ""
#include "or_sha1.i"
;
}