diff options
author | Stefan Kreutz <mail@skreutz.com> | 2021-10-12 15:07:02 +0200 |
---|---|---|
committer | Stefan Kreutz <mail@skreutz.com> | 2021-10-12 15:07:02 +0200 |
commit | 32eb4a205eeb6c20a16e43496a7e4229641889cc (patch) | |
tree | 8bb52ba24dd9b4b45fbc0c5c707ab32a004caaf1 /Makefile | |
download | jotpass-32eb4a205eeb6c20a16e43496a7e4229641889cc.tar |
Add initial implementationjotpass-0.1.0
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..552ebda --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +MAN= jotpass.1 +BINDIR= /usr/local/bin +MANDIR= /usr/local/man/man + +beforeinstall: + ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${.CURDIR}/jotpass.ksh ${DESTDIR}${BINDIR}/jotpass + +.include <bsd.prog.mk> |