X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Fdepends.c;h=c9cf88164cd81e37b4981e1e7da1f5a51756609d;hp=c631b9bc82968747147a1fd7328297a5d9fff3bc;hb=e84f843dfeb798e66b32a212bb7ffb095eebd7aa;hpb=9965fc25fcc92dc76d1cd4cf9595dc3dc9ebc586 diff --git a/tools/depends.c b/tools/depends.c index c631b9bc..c9cf8816 100644 --- a/tools/depends.c +++ b/tools/depends.c @@ -1,7 +1,7 @@ -#include "talloc/talloc.h" -#include "str/str.h" -#include "grab_file/grab_file.h" -#include "str_talloc/str_talloc.h" +#include +#include +#include +#include #include "tools.h" #include #include @@ -39,8 +39,8 @@ static int unlink_info(char *infofile) /* Be careful about trying to compile over running programs (parallel make) */ static char *compile_info(const void *ctx, const char *dir) { - char *infofile = talloc_asprintf(ctx, "%s/_info.%u", dir, getpid()); - char *cmd = talloc_asprintf(ctx, "cc " CFLAGS " -o %s %s/_info.c", + char *infofile = talloc_asprintf(ctx, "%s/info.%u", dir, getpid()); + char *cmd = talloc_asprintf(ctx, "cc " CFLAGS " -o %s -x c %s/_info", infofile, dir); talloc_set_destructor(infofile, unlink_info); if (system(cmd) != 0) @@ -98,7 +98,7 @@ static char **get_one_safe_deps(const void *ctx, char **deps, **lines, *raw, *fname; unsigned int i, n = 0; - fname = talloc_asprintf(ctx, "%s/_info.c", dir); + fname = talloc_asprintf(ctx, "%s/_info", dir); raw = grab_file(fname, fname, NULL); if (!raw) errx(1, "Could not open %s", fname); @@ -112,6 +112,10 @@ static char **get_one_safe_deps(const void *ctx, char *str; unsigned int len; + /* Ignore lines starting with # (e.g. #include) */ + if (lines[i][0] == '#') + continue; + /* Start of line, or after ". */ if (strstarts(lines[i], "ccan/")) str = lines[i];