xref: /csrg-svn/share/man/man7/Makefile (revision 35029)
133031Sbostic#
233031Sbostic# Copyright (c) 1987 Regents of the University of California.
333031Sbostic# All rights reserved.
433031Sbostic#
533031Sbostic# Redistribution and use in source and binary forms are permitted
6*35029Sbostic# provided that the above copyright notice and this paragraph are
7*35029Sbostic# duplicated in all such forms and that any documentation,
8*35029Sbostic# advertising materials, and other materials related to such
9*35029Sbostic# distribution and use acknowledge that the software was developed
10*35029Sbostic# by the University of California, Berkeley.  The name of the
11*35029Sbostic# University may not be used to endorse or promote products derived
12*35029Sbostic# from this software without specific prior written permission.
13*35029Sbostic# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14*35029Sbostic# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15*35029Sbostic# WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
1633031Sbostic#
17*35029Sbostic#	@(#)Makefile	5.2 (Berkeley) 07/09/88
1833031Sbostic#
1933031SbosticMDIR=	/usr/man/cat7
2033031SbosticSRCS=	ascii.7 environ.7 eqnchar.7 hier.7 hostname.7 intro.7 mailaddr.7 \
2133031Sbostic	man.7 me.7 ms.7 term.7
2233031SbosticOBJS=	ascii.0 environ.0 eqnchar.0 hier.0 hostname.0 intro.0 mailaddr.0 \
2333031Sbostic	man.0 me.0 ms.0 term.0
2433031SbosticLINKS=	miscellaneous.0
2533031Sbostic
2633031Sbostic.SUFFIXES: .7 .0
2733031Sbostic
2833031Sbostic.7.0:
2933031Sbostic	${DESTDIR}/usr/man/manroff $*.7 > $*.0
3033031Sbostic
3133031Sbosticall: ${OBJS}
3233031Sbostic
3333031Sbosticclean: FRC
3433031Sbostic	rm -f ${OBJS}
3533031Sbostic
3633031Sbosticinstall: FRC
3733031Sbostic	cd ${DESTDIR}${MDIR}; rm -f *.0
3833031Sbostic	install -c -o bin -g bin -m 444 ${OBJS} ${DESTDIR}${MDIR}
3933031Sbostic	ln ${DESTDIR}${MDIR}/intro.0 ${DESTDIR}${MDIR}/miscellaneous.0
4033031Sbostic
4133031SbosticFRC:
42