spark-rc/Makefile

34 lines
489 B
Makefile
Raw Normal View History

2014-10-18 17:57:36 +04:00
# spark-rc makefile
2014-08-09 14:59:12 +04:00
# Please modify config.mk and not this
sinclude config.mk
.PHONY: clean install uninstall all
build: rc
all: build
rc: rc.in
sed -r \
-e 's%@ETC@%$(ETC)%' \
rc.in > rc
chmod 750 $@
clean:
rm rc
install: build
install -dm755 $(BINDIR)
install -dm755 $(ETCDIR)
install -m750 rc $(BINDIR)/rc
install -m644 rc.conf $(ETCDIR)/rc.conf
2014-12-27 18:28:34 +03:00
install -m644 rc.motd $(ETCDIR)/rc.motd
2014-08-09 14:59:12 +04:00
2014-10-18 17:56:51 +04:00
install -m755 tools/killall5 $(BINDIR)/killall5
2014-08-09 14:59:12 +04:00
uninstall:
rm $(BINDIR)/rc