=pod

=head1 EXPORTS

=over 4

=cut


    our $host = 'obsidian'; # linux
  # our $host = 'tinman';   # windows


=pod

=item B<build_cache_root>

Returns the root of the build cache directory,
where temporary files are stored during a build,
and retained for later builds, to improve speed.

Must not be on a separate host, or mis-sync may occur.

=cut

sub build_cache_root() { return '/home/mike/var/build'; } # uses only subdirectory 'textbender', normally



=pod

=item B<target_temp_dir>

Returns the temporary directory of the build target host.

=cut

sub target_temp_dir()
{
    if( $host eq 'obsidian' )
    {
        return '/tmp';
    }
    elsif( $host eq 'tinman' )
    {
        return '/mnt/lan/tinman-temp';
    }
    else
    {
        die;
    }
}



=pod

=back

=cut



1;