search for: generate_docs_makefile_inc

Displaying 3 results from an estimated 3 matches for "generate_docs_makefile_inc".

2019 Aug 14
0
[libnbd PATCH 2/2] docs: Drop docs/Makefile.inc from git
...- * git because otherwise you can't clone and run autoreconf. +(* We generate a fragment of Makefile.am containing the list + * of generated functions, used in rules for building the manual + * pages. We exploit GNU make's sinclude to use this file without + * upsetting automake. *) let generate_docs_Makefile_inc () = generate_header HashStyle; diff --git a/.gitignore b/.gitignore index 4109865..ccbbc14 100644 --- a/.gitignore +++ b/.gitignore @@ -39,6 +39,7 @@ Makefile.in /depcomp /docs/*.3 /docs/*.pod +/docs/Makefile.inc !/docs/libnbd.pod !/docs/nbd_close.3 !/docs/nbd_create.pod -- 2.20.1
2019 Aug 15
1
[PATCH libnbd] docs: Change docs/Makefile.inc back to a regular include, readd to git.
...kage_name \ + nbd_get_version \ + nbd_kill_subprocess \ + nbd_supports_tls \ + nbd_supports_uri \ + $(NULL) diff --git a/generator/generator b/generator/generator index 6cc06cc..437f432 100755 --- a/generator/generator +++ b/generator/generator @@ -3766,7 +3766,7 @@ let generate_lib_api_c () = let generate_docs_Makefile_inc () = generate_header HashStyle; - pr "api_built += \\\n"; + pr "api_built = \\\n"; List.iter ( fun (name, _) -> pr "\tnbd_%s \\\n" name; -- 2.22.0
2019 Aug 14
3
[libnbd PATCH 0/2] Drop generated file from git
Rich recently patched things to generate one man page per function rather than libnbd-api.3 (nice), but in doing so got stumped by a problem with a fresh git clone (automake fails for any 'include' directive that does not already exist). I've figured out how to hack around it, but the hack requires GNU make. We already use GNU make constructs elsewhere (such as $(wildcard)), but