home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / bsd_srcs / libexec / bugfiler / Makefile < prev    next >
Encoding:
Makefile  |  1990-05-24  |  425 b   |  18 lines

  1. #    @(#)Makefile    5.17 (Berkeley) 5/24/90
  2.  
  3. PROG=    bugfiler
  4. CFLAGS+=-I${.CURDIR}
  5. SRCS=    bugfiler.c error.c gethead.c process.c redist.c reply.c
  6. BINOWN=    root
  7. BINMODE=4555
  8. MAN1=    sendbug.0
  9. MAN8=    bugfiler.0
  10.  
  11. beforeinstall:
  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.