Tomb/Makefile

21 lines
568 B
Makefile
Raw Normal View History

PROG = tomb
PREFIX ?= /usr/local
MANDIR ?= /usr/share/man
all:
2014-02-24 15:09:28 +00:00
@echo
@echo "Tomb is a script and does not need compilation, it can be simply executed."
2014-02-24 15:09:28 +00:00
@echo
@echo "To install it in /usr/local together with its manpage use 'make install'."
2014-02-24 15:09:28 +00:00
@echo
@echo "To run Tomb one needs to have some tools installed on the system:"
@echo "Sudo, cryptsetup, pinentry and gnupg. Also wipe is recommended."
@echo
install:
@install -Dm755 ${PROG} ${DESTDIR}${PREFIX}/bin/${PROG}
@install -Dm666 doc/${PROG}.1 ${DESTDIR}${MANDIR}/man1/${PROG}.1
test:
make -C extras/test