========================================================
(C)1995 Institute for New Generation Computer Technology
(Read COPYRIGHT for detailed information.)
========================================================

	How to Install a Distributed Pool (KLIC version)
	------------------------------------------------

1. Extract all files from 'dpool_klic.tar.Z' and put them on an
appropriate directory. The target directory will be referred to by
<DPOOL>.

	% mkdir <DPOOL>
	% cd <DPOOL>
	% zcat dpool_klic.tar.Z | tar xvf -

2. Select one from among 'src/{owner-migration, owner-fixed,
access-info}', and copy all source files of the selected directory
to working directories. The target directory will be referred to by
<WORK>.
 

[Copying source files of a distributed pool]
To compile the program 'test_main.kl1' using a distributed pool of a
owner-migration type, do the following instructions.

	% pwd
	<WORK>
	% cp <DPOOL>/owner-migration/* .
	% ls 
	cache.kl1 directory.kl1 hash.kl1 manager.kl1 pool.kl1
	% klic -dp test_main.kl1 cache.kl1 directory.kl1 hash.kl1 manager.kl1 pool.kl1
	% a.out

[Without copying source files of a distributed pool] 
To compile the program 'test_main.kl1' using a distributed pool
without copying source files, use the compiling option '-x' and
designate the directory where database files for KLIC system are
placed. See the KLIC manual for details.

	% pwd
	<WORK>
	% ls 
	test_main.kl1
	% klic -dp -x <WORK> test_main.kl1 <DPOOL>/cache.kl1 <DPOOL>/directory.kl1 <DPOOL>/hash.kl1 <DPOOL>/manager.kl1 <DPOOL>/pool.kl1
	% a.out


