- Create the symbolic link './vlc/src/revision.c -> ../../revision.c'
	# cd vlc/src/
	# ln -s ../../revision.c

- The libvlc.so is completely built by this module's main Makefile
	Basic targets: clean all
	Examples:
		'make clean'  => Clean all object files and target library
		'make'        => Will generate all object files in obj directory and libvlc.so library in lib directory

- The following paths need to be adjusted/verified in the Makefile, to be in accordance with your build environment:
	XML2_INSTALL_PREFIX = Directory where libxml2 with the proper version has been installed (headers and binaries)
	BOOST_INSTALL_PREFIX = Directory where boost library with the proper version has been installed (it is only required that its headers are installed)
	ZLIB_INSTALL_PREFIX = Directory where zlib with the proper version has been installed (headers and binaries)

- The following dependency libraries need to be built, and/or installed:
	libxml2 (http://xmlsoft.org/ - version 2.9.X)
	boost (for boost library, it is enough to copy the "boost" headers directory to the directory defined by variable BOOST_INSTALL_PREFIX)
	libzlib (https://zlib.net/ - version 1.2.3)

