Use an indexed array for mount definitions

This commit is contained in:
2015-08-26 14:44:08 +03:00
parent f93cfc9056
commit c0364011e0
5 changed files with 55 additions and 13 deletions

View File

@@ -3,15 +3,19 @@
# Please modify config.mk and not this
sinclude config.mk
.PHONY: clean install uninstall all
.PHONY: clean install uninstall all tools
build: rc
build: rc tools
all: build
tools:
make -C tools
rc: rc.in
sed -r \
-e 's%@ETC@%$(ETC)%' \
-e 's%@BASH_PATH@%$(BASH_PATH)%' \
rc.in > rc
chmod 750 $@
@@ -19,6 +23,8 @@ rc: rc.in
clean:
rm rc
make -C tools clean
install: build
install -dm755 $(BINDIR)
install -dm755 $(ETCDIR)
@@ -29,5 +35,9 @@ install: build
install -m755 tools/killall5 $(BINDIR)/killall5
make -C tools install
uninstall:
rm $(BINDIR)/rc
make -C tools uninstall