mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-25 07:51:28 +00:00
- Version fixed git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@431 d57e44dd-8a1f-0410-8b47-8ef2f437770f
15 lines
345 B
Makefile
15 lines
345 B
Makefile
all:
|
|
|
|
install:
|
|
install -m 755 init.d/scst /etc/init.d
|
|
install -m 755 scstadmin /usr/local/sbin
|
|
mkdir -p /usr/local/lib/site_perl/SCST
|
|
install -m 644 SCST/SCST.pm /usr/local/lib/site_perl/SCST/SCST.pm
|
|
|
|
uninstall:
|
|
-rm -f /etc/init.d/scst
|
|
-rm -f /usr/local/sbin/scstadmin
|
|
-rm -rf /usr/local/lib/site_perl/SCST
|
|
|
|
.PHONY: all install uninstall
|