Tomb/Makefile
Sam Stuewe 300f041670 Make syntax more explicit and clean; Add DESTDIR variable for easy packaging
--TODO--
* Add kdf installation
* Add zsh completion installation
2013-05-26 16:09:21 -04:00

12 lines
364 B
Makefile

PROG = tomb
PREFIX ?= /usr/local
MANDIR ?= /usr/share/man
all:
@echo "Tomb is a script and does not need compilation, it can be simply executed."
@echo "To install it in /usr/local together with its manpage use 'make install'."
install:
@install -Dm755 ${PROG} ${DESTDIR}${PREFIX}/bin/${PROG}
@install -Dm666 doc/${PROG}.1 ${DESTDIR}${MANDIR}/man1/${PROG}.1