xref: /original-bsd/share/man/man8/man8.vax/Makefile (revision 92c664ec)
1#
2# Copyright (c) 1987 Regents of the University of California.
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms are permitted
6# provided that this notice is preserved and that due credit is given
7# to the University of California at Berkeley. The name of the University
8# may not be used to endorse or promote products derived from this
9# software without specific prior written permission. This software
10# is provided ``as is'' without express or implied warranty.
11#
12#	@(#)Makefile	5.1 (Berkeley) 12/12/87
13#
14MDIR=	/usr/man/cat8/vax
15SRCS=	arff.8 bad144.8 crash.8 drtest.8 format.8 installboot.8 rxformat.8 \
16	reboot.8
17OBJS=	arff.0 bad144.0 crash.0 drtest.0 format.0 installboot.0 rxformat.0 \
18	reboot.0
19LINKS=	flcopy.0
20
21.SUFFIXES: .8 .0
22
23.8.0:
24	${DESTDIR}/usr/man/manroff $*.8 > $*.0
25
26all: ${OBJS}
27
28clean: FRC
29	rm -f ${OBJS}
30
31install: FRC
32	cd ${DESTDIR}${MDIR}; rm -f *.0
33	install -c -o bin -g bin -m 444 ${OBJS} ${DESTDIR}${MDIR}
34	ln ${DESTDIR}${MDIR}/arff.0 ${DESTDIR}${MDIR}/flcopy.0
35
36FRC:
37