blob: 20085601049f9573e06610b7418d3ae776652b49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# @(#)Makefile 5.17 (Berkeley) 5/24/90
# Fixed to use sun-lamp.cs.berkeley.edu as a bugs host - rgrimes 4/01/93
PROG= bugfiler
CFLAGS+=-I${.CURDIR} -D"BUGS_HOME=\"owner-386bsd_bugs@sun-lamp.cs.berkeley.edu\""
SRCS= bugfiler.c error.c gethead.c process.c redist.c reply.c
BINOWN= root
BINMODE=4555
MAN1= sendbug.0
MAN8= bugfiler.0
beforeinstall:
install -c -o bin -g ${BINGRP} -m 555 \
${.CURDIR}/sendbug.sh ${DESTDIR}/usr/bin/sendbug
install -c -o bin -g ${BINGRP} -m 444 ${.CURDIR}/bugformat \
${DESTDIR}/usr/share/misc
.include <bsd.prog.mk>
|