Files
scst/scstadmin/Makefile
Mark Buechler 908e8f76dd - Added a proper Makefile.PL to SCST::SCST so now we have a also a
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
2008-07-09 17:32:42 +00:00

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