X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/blobdiff_plain/0f4556f12c8f75078501c9d1338ae7648a97f975..95f51977ddc18faa2e212f30c00a39540b39f325:/usr/src/ucb/sendbug/Makefile diff --git a/usr/src/ucb/sendbug/Makefile b/usr/src/ucb/sendbug/Makefile index b42a28f81c..c9bac49d82 100644 --- a/usr/src/ucb/sendbug/Makefile +++ b/usr/src/ucb/sendbug/Makefile @@ -1,16 +1,33 @@ -# Makefile 4.2 83/08/23 +# +# Copyright (c) 1983 Regents of the University of California. +# All rights reserved. The Berkeley software License Agreement +# specifies the terms and conditions for redistribution. +# +# @(#)Makefile 5.6 (Berkeley) 4/24/86 # # Bug report processor and associated programs # -CFLAGS = -O -DUNIXCOMP +BUGS_NAME = 4bsd-bugs +BUGS_HOME = @ucbvax.BERKELEY.EDU +DEFS = -DBUGS_NAME='"$(BUGS_NAME)"' -DBUGS_HOME='"$(BUGS_HOME)"' +CFLAGS = -O -DUNIXCOMP $(DEFS) LIBDIR= /usr/lib DESTDIR= +all: bugfiler unixtomh + bugfiler: bugfiler.c - ${CC} ${CFLAGS} -o bugfiler bugfiler.c + ${CC} ${CFLAGS} -DUNIXTOMH='"${LIBDIR}/unixtomh"' -o bugfiler bugfiler.c -install: bugfiler sendbug.sh bugformat +unixtomh: unixtomh.c + ${CC} ${CFLAGS} -o unixtomh unixtomh.c + +install: bugfiler sendbug.sh bugformat unixtomh install -s bugfiler ${DESTDIR}${LIBDIR}/bugfiler install -c sendbug.sh ${DESTDIR}/usr/ucb/sendbug - install -c -m 644 bugformat ${DESTDIR}/usr/ucb/bugformat + install -s unixtomh ${DESTDIR}${LIBDIR}/unixtomh + install -c -m 644 bugformat ${DESTDIR}/usr/lib/bugformat + +clean: + rm -f *.o bugfiler unixtomh