Update (#555)

Update:
 * new CLI; bro -> brotli; + man page
 * JNI wrappers preparation (for bazel build)
 * add raw binary dictionary representation `dictionary.bin`
 * add ability to side-load brotli RFC dictionary
 * decoder persists last error now
 * fix `BrotliDecoderDecompress` documentation
 * go reader don't block until necessary
 * more consistent bazel target names
 * Java dictionary data compiled footprint reduced
 * Java tests refactoring
diff --git a/premake5.lua b/premake5.lua
index 63fa5de..36d1f24 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -63,9 +63,9 @@
   files { "c/enc/**.h", "c/enc/**.c" }
   links "brotlicommon_static"
 
-project "bro"
+project "brotli"
   kind "ConsoleApp"
   language "C"
   linkoptions "-static"
-  files { "c/tools/bro.c" }
+  files { "c/tools/brotli.c" }
   links { "brotlicommon_static", "brotlidec_static", "brotlienc_static" }