diff options
author | Stefan Kreutz <mail@skreutz.com> | 2022-05-19 10:23:18 +0200 |
---|---|---|
committer | Stefan Kreutz <mail@skreutz.com> | 2022-05-19 10:23:18 +0200 |
commit | 4d96b8b8000291561c6185ee2abc888231112274 (patch) | |
tree | 67f74e854ebe6619b20e0771a52d8b5275e4e3fe /Makefile | |
parent | 3dd843c80c051987f957df9d19fa74119be9659a (diff) | |
download | temp-postgres-4d96b8b8000291561c6185ee2abc888231112274.tar |
Add Makefile, README, and manual page
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..5cc9272 --- /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}/temp-postgres.sh ${DESTDIR}${BINDIR}/temp-postgres + +.include <bsd.prog.mk> |