xref: /csrg-svn/share/man/man7/Makefile (revision 33031)
1*33031Sbostic#
2*33031Sbostic# Copyright (c) 1987 Regents of the University of California.
3*33031Sbostic# All rights reserved.
4*33031Sbostic#
5*33031Sbostic# Redistribution and use in source and binary forms are permitted
6*33031Sbostic# provided that this notice is preserved and that due credit is given
7*33031Sbostic# to the University of California at Berkeley. The name of the University
8*33031Sbostic# may not be used to endorse or promote products derived from this
9*33031Sbostic# software without specific prior written permission. This software
10*33031Sbostic# is provided ``as is'' without express or implied warranty.
11*33031Sbostic#
12*33031Sbostic#	@(#)Makefile	5.1 (Berkeley) 12/12/87
13*33031Sbostic#
14*33031SbosticMDIR=	/usr/man/cat7
15*33031SbosticSRCS=	ascii.7 environ.7 eqnchar.7 hier.7 hostname.7 intro.7 mailaddr.7 \
16*33031Sbostic	man.7 me.7 ms.7 term.7
17*33031SbosticOBJS=	ascii.0 environ.0 eqnchar.0 hier.0 hostname.0 intro.0 mailaddr.0 \
18*33031Sbostic	man.0 me.0 ms.0 term.0
19*33031SbosticLINKS=	miscellaneous.0
20*33031Sbostic
21*33031Sbostic.SUFFIXES: .7 .0
22*33031Sbostic
23*33031Sbostic.7.0:
24*33031Sbostic	${DESTDIR}/usr/man/manroff $*.7 > $*.0
25*33031Sbostic
26*33031Sbosticall: ${OBJS}
27*33031Sbostic
28*33031Sbosticclean: FRC
29*33031Sbostic	rm -f ${OBJS}
30*33031Sbostic
31*33031Sbosticinstall: FRC
32*33031Sbostic	cd ${DESTDIR}${MDIR}; rm -f *.0
33*33031Sbostic	install -c -o bin -g bin -m 444 ${OBJS} ${DESTDIR}${MDIR}
34*33031Sbostic	ln ${DESTDIR}${MDIR}/intro.0 ${DESTDIR}${MDIR}/miscellaneous.0
35*33031Sbostic
36*33031SbosticFRC:
37