1#!/bin/sh 2 3if [ "`whoami`" != "root" ]; then 4 echo Need to be root to execute.; 5 exit 1; 6fi 7 8cd .. 9make clean 10make -j 4 11make install 12