spark-rc/Makefile

44 lines
633 B
Makefile
Raw Permalink Normal View History

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