X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Ftools.h;h=56e9de610620a0c944da84fc7f58337c3ae66393;hp=8d1ae04887493206107990ec810c209e475f1cb0;hb=fa7a78f9d3553292b5088b1e7a89d63a2393ab2c;hpb=20ea8a370823bd73a3c96da40a4779fa6ea66462 diff --git a/tools/tools.h b/tools/tools.h index 8d1ae048..56e9de61 100644 --- a/tools/tools.h +++ b/tools/tools.h @@ -19,16 +19,19 @@ #define COVERAGE_CFLAGS "-fprofile-arcs -ftest-coverage" +/* This compiles up the _info file into a temporary. */ +char *compile_info(const void *ctx, const char *dir); + /* This actually compiles and runs the info file to get dependencies. */ char **get_deps(const void *ctx, const char *dir, bool recurse, - char **infofile); + char *(*get_info)(const void *ctx, const char *dir)); /* This is safer: just looks for ccan/ strings in info */ char **get_safe_ccan_deps(const void *ctx, const char *dir, bool recurse); /* This also needs to compile the info file. */ -char **get_libs(const void *ctx, const char *dir, - unsigned int *num, char **infofile); +char **get_libs(const void *ctx, const char *dir, bool recurse, + char *(*get_info)(const void *ctx, const char *dir)); /* From tools.c */ /* If set, print all commands run, all output they give and exit status. */