1BAKEFILIZE(1) Running Bakefile BAKEFILIZE(1)
2
3
4
6 bakefilize - prepare Bakefile project for use with Autoconf
7
9 bakefilize [--copy] [--dry-run] [--force] [--verbose] [--help]
10
12 For the "autoconf" format, Bakefile creates Makefile.in files that
13 depend on the availability of common pieces of a GNU build system.
14 (config.guess, install-sh, etc.) These tools are part of Automake,
15 which can copy these files into a project's directory during
16 processing. bakefilize effectively replaces the automake --add-missing
17 feature.
18
19 It is standard practice in Autoconf-based projects to provide a
20 "bootstrap" script (commonly called either bootstrap or autogen.sh) to
21 run commands like autoconf with the proper flags and in the proper
22 order. You should run bakefilize in that script, at some point before
23 the configure script runs.
24
26 -c, --copy
27 Copy the files from the Automake directory, rather than the default
28 behavior of making symbolic links.
29
30 -n, --dry-run
31 Only show the commands that would be executed.
32
33 -f, --force
34 Replace all existing files, instead of only adding missing files.
35
36 -v, --verbose
37 Show debugging messages.
38
39 --help
40 Display usage information for bakefilize
41
42
43
44[FIXME: source] 02/19/2018 BAKEFILIZE(1)