mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-20 04:01:26 +00:00
proper man page. - Renamed Changes to ChangeLog - Updated README to include instructions for installing the perl module. - Renamed SCST perl module directory tp scst-0.7.4 git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@447 d57e44dd-8a1f-0410-8b47-8ef2f437770f
29 lines
527 B
Makefile
29 lines
527 B
Makefile
VERSION = 0.7.4
|
|
TOOL = scstadmin
|
|
|
|
all: perl-module
|
|
|
|
install:
|
|
install -m 755 $(TOOL) /usr/local/sbin
|
|
install -m 755 init.d/scst /etc/init.d
|
|
$(MAKE) -C scst-$(VERSION) install
|
|
|
|
uninstall:
|
|
-rm -f /etc/init.d/scst
|
|
-rm -f /usr/local/sbin/$(TOOL)
|
|
$(MAKE) -C scst-$(VERSION) uninstall
|
|
|
|
perl-module:
|
|
@cd ./scst-$(VERSION); \
|
|
perl Makefile.PL;
|
|
$(MAKE) -C scst-$(VERSION)
|
|
|
|
clean:
|
|
$(MAKE) -C scst-$(VERSION) clean
|
|
|
|
distclean:
|
|
$(MAKE) -C scst-$(VERSION) clean
|
|
-rm -f scst-$(VERSION)/Makefile.old
|
|
|
|
.PHONY: all install uninstall
|