X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=tools%2Ftools.h;h=440abc89353055764362f355d985803c1934116f;hb=165727526f785b05f67f3d88f9518a0a840acbbf;hp=4bdb8077e26c82b3f6934877a2b7f82706ccf0e0;hpb=570c9c555f076e74f46141bb42b5d1d7ac89f632;p=ccan diff --git a/tools/tools.h b/tools/tools.h index 4bdb8077..440abc89 100644 --- a/tools/tools.h +++ b/tools/tools.h @@ -8,13 +8,24 @@ #define SPACE_CHARS " \f\n\r\t\v" -#define CFLAGS "-O3 -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -Iccan/ -I." +/* FIXME: Remove some -I */ +#define CFLAGS "-O -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -Iccan/ -I.. -I../.." /* This actually compiles and runs the info file to get dependencies. */ -char **get_deps(const void *ctx, const char *dir, bool recurse); +char **get_deps(const void *ctx, const char *dir, const char *name, + bool recurse); /* This is safer: just looks for ccan/ strings in info */ -char **get_safe_ccan_deps(const void *ctx, const char *dir, bool recurse); +char **get_safe_ccan_deps(const void *ctx, const char *dir, const char *name, + bool recurse); -#endif /* CCAN_TOOLS_H */ +/* This also needs to compile the info file. */ +char **get_libs(const void *ctx, const char *dir, + const char *name, unsigned int *num); +/* From tools.c */ +char *talloc_basename(const void *ctx, const char *dir); +char *talloc_dirname(const void *ctx, const char *dir); +char *talloc_getcwd(const void *ctx); +char *run_command(const void *ctx, const char *fmt, ...); +#endif /* CCAN_TOOLS_H */