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 635029Sbostic# provided that the above copyright notice and this paragraph are 735029Sbostic# duplicated in all such forms and that any documentation, 835029Sbostic# advertising materials, and other materials related to such 935029Sbostic# distribution and use acknowledge that the software was developed 1035029Sbostic# by the University of California, Berkeley. The name of the 1135029Sbostic# University may not be used to endorse or promote products derived 1235029Sbostic# from this software without specific prior written permission. 1335029Sbostic# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR 1435029Sbostic# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED 1537060Sbostic# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 1633031Sbostic# 17*41548Sbostic# @(#)Makefile 5.4 (Berkeley) 05/10/90 1833031Sbostic# 19*41548SbosticMDIR= ${DESTDIR}/usr/share/man/cat7 2033031SbosticOBJS= ascii.0 environ.0 eqnchar.0 hier.0 hostname.0 intro.0 mailaddr.0 \ 21*41548Sbostic man.0 ms.0 operator.0 term.0 2233031Sbostic 2337060Sbosticall clean depend lint tags: 2433031Sbostic 2537060Sbosticcleandir: 2633031Sbostic rm -f ${OBJS} 2733031Sbostic 2837060Sbosticinstall: ${OBJS} 2937060Sbostic install -c -o bin -g bin -m 444 ${OBJS} ${MDIR} 3037060Sbostic rm -f ${MDIR}/miscellaneous.0; \ 3137060Sbostic ln ${MDIR}/intro.0 ${MDIR}/miscellaneous.0 32