Tomb/Makefile
Jaromil 4d6c0bf5cc Cleaner test environment
now available as 'make test'
2013-06-12 11:12:33 +02:00

15 lines
392 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
test:
make -C extras/test