1/*
2 *	aegis - project change supervisor
3 *	This file is in the Public Domain, 1995, Peter Miller.
4 */
5
6/*
7 * The build_command field of the config file is used to invoke the relevant
8 * build command.  The following command tells cook where to find the recipes.
9 * The ${s Howto.cook} expands to a path into the baseline during development
10 * if the file is not in the change.  Look in aesub(5) for more information
11 * about command substitutions.
12 */
13build_command =
14	"cook -b ${s Howto.cook} -nl project=$p change=$c version=$v";
15
16/*
17 * The recipes in the User Guide will all remove their targets before
18 * constructing them, which qualifies them to use the following entry in the
19 * config file.  The targets MUST be removed first if this field is true,
20 * otherwise the baseline would cease to be self-consistent.
21 *
22link_integration_directory = true;
23 */
24