How to Build Live Streaming Independently

1. The basefw, NDK building environment and the live-streaming source codes should be put under the same directory.

2. Open the live-streaming Makefile. Change the value of the following variables according to your environment.
	NDKINCDIR	?= ../net/inc         # Path to NDK header file directory
	PLATFORM	?= spca6350           # Platform name
	PLATFORM_ROOT	?= ../$(PLATFORM)     # Path to Platform directory
	OUTPUT_LIB_PATH ?= ./_out/lib         # Installing path for library file.
	OUTPUT_INC_PATH ?= ./_out/inc         # Installing path for header files.

3. In the live-streaming directory, type
	cygwin> make         # Make only. or
	cygwin> make install # Make and copy the header and library files to the directory $(OUTPUT_INC_PATH) and $(OUTPUT_LIB_PATH)

4. The library name of live-streaming is: liblivest_v33.a (for V33 platform) or liblivest_v35.a (for V35 platform).