Ciao ragazzi, devo installare un servizio e quello indicato sotto è il suo MakeFile

Codice PHP:
##  You should have received a copy of the GNU General Public License
##  along with phoneglue; if not, see <[url]http://www.gnu.org/licenses/[/url]>.

SHELL = /bin/sh
RM 
rm -f
INSTALL 
install

install
:
    $(
INSTALLphoneglue /usr/bin
    
$(INSTALLphoneglue.init /etc/init.d/phoneglue
    
-/usr/sbin/useradd --"phoneglue" -/sbin/nologin -/var/log/phoneglue phoneglue 2> /dev/null
    
/sbin/chkconfig --add phoneglue

uninstall
:
    /
sbin/service phoneglue stop > /dev/null 2>&1
    
/sbin/chkconfig --del phoneglue
    
-/usr/sbin/userdel -f phoneglue 2> /dev/null
    
$(RM) /usr/bin/phoneglue
    
$(RM) /etc/init.d/phoneglue

clean
:
    $(
RM) *.*.so 
mi dite x favore come devo fare per installarlo??