commit 2bb6704190d2048ec0d42a32c659344d6771569c parent ad59dec3da023bafe1803f4741408de4dc563abe Author: Jaromil <jaromil@dyne.org> Date: Sat, 25 May 2013 16:39:42 +0200 added simple makefile for manpage install Diffstat:
M | .gitignore | | | 1 | - |
A | Makefile | | | 10 | ++++++++++ |
2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/.gitignore b/.gitignore @@ -20,7 +20,6 @@ depcomp install-sh libtool ltmain.sh -Makefile Makefile.in missing stamp-h1 diff --git a/Makefile b/Makefile @@ -0,0 +1,10 @@ + +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