133191Sbostic# 233191Sbostic# Copyright (c) 1987 Regents of the University of California. 333191Sbostic# All rights reserved. 433191Sbostic# 533191Sbostic# Redistribution and use in source and binary forms are permitted 6*35007Sbostic# provided that the above copyright notice and this paragraph are 7*35007Sbostic# duplicated in all such forms and that any documentation, 8*35007Sbostic# advertising materials, and other materials related to such 9*35007Sbostic# distribution and use acknowledge that the software was developed 10*35007Sbostic# by the University of California, Berkeley. The name of the 11*35007Sbostic# University may not be used to endorse or promote products derived 12*35007Sbostic# from this software without specific prior written permission. 13*35007Sbostic# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR 14*35007Sbostic# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED 15*35007Sbostic# WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. 1633191Sbostic# 17*35007Sbostic# @(#)Makefile 5.2 (Berkeley) 07/09/88 1833191Sbostic# 19*35007Sbostic 2033191SbosticSRCS= 2133191SbosticOBJS= fed.0 vfontinfo.0 vpr.0 vtroff.0 vwidth.0 vpac.0 2233191SbosticLINKS= 2333191Sbostic 2433191Sbostic.SUFFIXES: .8 .1 .0 2533191Sbostic 2633191Sbostic.8.0: 2733191Sbostic ${DESTDIR}/usr/man/manroff $*.8 > $*.0 2833191Sbostic.1.0: 2933191Sbostic ${DESTDIR}/usr/man/manroff $*.1 > $*.0 3033191Sbostic 3133191Sbosticall: ${OBJS} 3233191Sbostic 3333191Sbosticclean: FRC 3433191Sbostic rm -f ${OBJS} 3533191Sbostic 3633191Sbosticinstall: FRC 3733191Sbostic install -c -o bin -g bin -m 444 ${OBJS1} ${OBJS8} ${DESTDIR}/usr/man/cat.old 3833191Sbostic 3933191SbosticFRC: 4033191Sbostic 41