mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-05 21:07:58 +00:00
30 lines
894 B
Makefile
30 lines
894 B
Makefile
PROG = tomb
|
|
PREFIX ?= /usr/local
|
|
MANDIR ?= ${PREFIX}/share/man
|
|
|
|
all:
|
|
@echo
|
|
@echo "Tomb is a script and does not need compilation, it can be simply executed."
|
|
@echo
|
|
@echo "To install it in /usr/local together with its manpage use 'make install'."
|
|
@echo
|
|
@echo "To run Tomb one needs to have some tools installed on the system:"
|
|
@echo "Sudo, cryptsetup, pinentry and gnupg."
|
|
@echo
|
|
|
|
install:
|
|
install -Dm755 ${PROG} ${DESTDIR}${PREFIX}/bin/${PROG}
|
|
install -Dm644 doc/${PROG}.1 ${DESTDIR}${MANDIR}/man1/${PROG}.1
|
|
@echo
|
|
@echo "Tomb is installed succesfully. To install language translations, make sure"
|
|
@echo "gettext is also installed, then 'cd extras/translations' and 'make install' there."
|
|
@echo
|
|
@echo "Look around the extras/ directory, it contains other interesting modules."
|
|
@echo
|
|
|
|
test:
|
|
make -C extras/test
|
|
|
|
lint:
|
|
shellcheck -s zsh -e SC1073,SC1027,SC1072,SC1083,SC1009 tomb
|