]> git.ozlabs.org Git - ccan/blob - tools/tools.h
Non-compiling version of ccan_depends by default.
[ccan] / tools / tools.h
1 #ifndef CCAN_TOOLS_H
2 #define CCAN_TOOLS_H
3
4 #define CFLAGS "-O3 -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -Iccan/ -I."
5
6 /* This actually compiles and runs the _info.c file to get dependencies. */
7 char **get_deps(const void *ctx, const char *dir);
8
9 /* This is safer: just looks for ccan/ strings in _info.c */
10 char **get_safe_ccan_deps(const void *ctx, const char *dir);
11
12 #endif /* CCAN_TOOLS_H */
13