
On Linux:
	1. install Java JDK
		a) sudo apt install openjdk-8-jdk

	2. edit the configuration file of ulsjni.
		a) vi ulsjni.config
		b) set OPENJDK_HOME

	3. build & install the source
		a) make
		b) make install
			No need 'sudo' as the installation directory 'libs'
				is not a system directory.

	4. Run test (java) program
		a) cd tests
		b) ./run.sh

	5. To cleanup the directory,
		a) make distclean

On Windows:
	1. check if JAVA_HOME properly indicates the JAVA JDK directory. For example,
		setx JAVA_HOME "C:\Program Files\Java\jdk1.8.0_152"

	2. Build libulsjni.dll by building VS-proj in uls_jni.sln.
		copy the output file 'libulsjni.dll' to $(ULS_HOME)\Bin

	3. Start 'Java Ecllipse(Neon2 or later)' to load uls_jni project.

	4. Try running test java programs:
		a) uls.tests.UlsDump input1.txt
		b) uls.tests.UlsTestStream

	5. The test programs should be collectly executed in command line.
		a) java -cp ./bin uls.tests.UlsDump input1.txt ./tests
		b) java -cp ./bin uls.tests.UlsTestStream ./tests

