spark-rc/Makefile

44 lines
633 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 tools
2014-08-09 14:59:12 +04:00
build: rc tools
2014-08-09 14:59:12 +04:00
all: build
tools:
make -C tools
2014-08-09 14:59:12 +04:00
rc: rc.in
sed -r \
-e 's%@ETC@%$(ETC)%' \
-e 's%@BASH_PATH@%$(BASH_PATH)%' \
2014-08-09 14:59:12 +04:00
rc.in > rc
chmod 750 $@
clean:
rm rc
make -C tools clean
2014-08-09 14:59:12 +04:00
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
make -C tools install
2014-08-09 14:59:12 +04:00
uninstall:
rm $(BINDIR)/rc
make -C tools uninstall