mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-22 04:25:12 +00:00
11 lines
278 B
Makefile
11 lines
278 B
Makefile
|
|
||
|
PREFIX ?= /usr/local
|
||
|
|
||
|
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 tomb $(PREFIX)/bin
|
||
|
install doc/tomb.1 $(PREFIX)/share/man/man1
|