diff options
Diffstat (limited to '')
-rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0605b82 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +PREFIX ?= /usr/local + +install: rolectl rolectl.1 + install -D -m 755 -t '${DESTDIR}${PREFIX}/bin' rolectl + install -D -m 644 -t '${DESTDIR}${PREFIX}/share/man/man1' rolectl.1 + +.PHONY: install |