make:
	cd Driver;sh Build;cd .. 
	cd DevKit;make 
install:
	@if [ ! -r /usr/lib/libuuid.so ]; then \
	cd DevKit;make uuid;cd -; \
	fi
	
	cd Driver;make install
	cd DevKit;make install
uninstall:
	cd Driver; sh uninst; make uninstall
	cd DevKit;make uninstall
clean:
	cd Driver;make clean
	cd DevKit;make clean
