xref: /csrg-svn/libexec/bugfiler/Makefile (revision 61419)
1#	@(#)Makefile	8.1 (Berkeley) 06/04/93
2
3PROG=	bugfiler
4CFLAGS+=-I${.CURDIR}
5SRCS=	bugfiler.c error.c gethead.c process.c redist.c reply.c
6BINOWN=	root
7BINMODE=4555
8MAN1=	sendbug.0
9MAN8=	bugfiler.0
10
11beforeinstall:
12	install -c -o bin -g ${BINGRP} -m 555 \
13	    ${.CURDIR}/sendbug.sh ${DESTDIR}/usr/bin/sendbug
14	install -c -o bin -g ${BINGRP} -m 444 ${.CURDIR}/bugformat \
15	    ${DESTDIR}/usr/share/misc
16
17.include <bsd.prog.mk>
18