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:
$(INSTALL) phoneglue /usr/bin
$(INSTALL) phoneglue.init /etc/init.d/phoneglue
-/usr/sbin/useradd -r -c "phoneglue" -s /sbin/nologin -d /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) *.o *.so
mi dite x favore come devo fare per installarlo??