Initial release, first three books of Mose added

This commit is contained in:
2020-04-19 16:30:25 +02:00
commit 5080ff17e1
1272 changed files with 237920 additions and 0 deletions

24
Makefile Normal file
View File

@ -0,0 +1,24 @@
PREFIX = /usr/local
bibel: bibel.sh bibel.awk bibel.tsv
cat bibel.sh > $@
echo 'exit 0' >> $@
echo '#EOF' >> $@
tar cz bibel.awk bibel.tsv >> $@
chmod +x $@
test: bibel.sh
shellcheck -s sh bibel.sh
clean:
rm -f bibel
install: bibel
mkdir -p $(DESTDIR)$(PREFIX)/bin
cp -f bibel $(DESTDIR)$(PREFIX)/bin
chmod 755 $(DESTDIR)$(PREFIX)/bin/bibel
uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/bibel
.PHONY: test clean install uninstall