diff options
author | Stefan Kreutz <mail@skreutz.com> | 2021-07-24 19:06:25 +0200 |
---|---|---|
committer | Stefan Kreutz <mail@skreutz.com> | 2021-07-24 19:06:25 +0200 |
commit | 5de41afa5a1976f42997347f4a213e031678ec34 (patch) | |
tree | 253547f89d2ef98e280c28abd730cec05d38ef51 /Makefile | |
download | openbsd-installiso-5de41afa5a1976f42997347f4a213e031678ec34.tar |
Add initial implementationopenbsd-installiso-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..bfc0afc --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +MAN= installiso.8 +BINDIR= /usr/local/bin +MANDIR= /usr/local/man/man + +beforeinstall: + ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${.CURDIR}/installiso.ksh ${DESTDIR}${BINDIR}/installiso + +.include <bsd.prog.mk> |