NetBSD/gnu/usr.bin/send-pr/Makefile

42 lines
994 B
Makefile

#
# Makefile for building a standalone send-pr.
#
VERSION=3.01.6
RELEASE=NetBSD-current
GNATS_HOST=sun-lamp
BINDIR= /usr/bin
LIBDIR= /usr/share
NOPROG=
MAN1= send-pr.0
CLEANFILES= send-pr install-sid send-pr.1
all: send-pr install-sid send-pr.1
send-pr: send-pr.sh
sed -e 's/@VERSION@/$(VERSION)/g' \
-e 's/@DEFAULT_RELEASE@/$(RELEASE)/g' \
${.CURDIR}/send-pr.sh > send-pr
send-pr.1: send-pr.man
sed -e 's/@VERSION@/$((VERSION)/g' \
${.CURDIR}/send-pr.man > send-pr.1
install-sid: install-sid.sh
sed -e 's/@VERSION@/$(VERSION)/g' \
${.CURDIR}/install-sid.sh > install-sid
beforeinstall:
install ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} send-pr \
${DESTDIR}${BINDIR}
install ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} install-sid \
${DESTDIR}${BINDIR}
install -d -o root -g wheel -m 755 ${DESTDIR}${LIBDIR}/gnats
install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/categories \
${DESTDIR}${LIBDIR}/gnats/${GNATS_HOST}
.include <bsd.prog.mk>