From d041f8a39fd8f42361bb267597f1415d1253d880 Mon Sep 17 00:00:00 2001 From: Keith Bostic Date: Sun, 13 Dec 1987 02:22:56 -0800 Subject: [PATCH] date and time created 87/12/12 18:22:56 by bostic SCCS-vsn: share/man/man7/Makefile 5.1 --- usr/src/share/man/man7/Makefile | 36 +++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 usr/src/share/man/man7/Makefile diff --git a/usr/src/share/man/man7/Makefile b/usr/src/share/man/man7/Makefile new file mode 100644 index 0000000000..04d7e8cb42 --- /dev/null +++ b/usr/src/share/man/man7/Makefile @@ -0,0 +1,36 @@ +# +# Copyright (c) 1987 Regents of the University of California. +# All rights reserved. +# +# Redistribution and use in source and binary forms are permitted +# provided that this notice is preserved and that due credit is given +# to the University of California at Berkeley. The name of the University +# may not be used to endorse or promote products derived from this +# software without specific prior written permission. This software +# is provided ``as is'' without express or implied warranty. +# +# @(#)Makefile 5.1 (Berkeley) %G% +# +MDIR= /usr/man/cat7 +SRCS= ascii.7 environ.7 eqnchar.7 hier.7 hostname.7 intro.7 mailaddr.7 \ + man.7 me.7 ms.7 term.7 +OBJS= ascii.0 environ.0 eqnchar.0 hier.0 hostname.0 intro.0 mailaddr.0 \ + man.0 me.0 ms.0 term.0 +LINKS= miscellaneous.0 + +.SUFFIXES: .7 .0 + +.7.0: + ${DESTDIR}/usr/man/manroff $*.7 > $*.0 + +all: ${OBJS} + +clean: FRC + rm -f ${OBJS} + +install: FRC + cd ${DESTDIR}${MDIR}; rm -f *.0 + install -c -o bin -g bin -m 444 ${OBJS} ${DESTDIR}${MDIR} + ln ${DESTDIR}${MDIR}/intro.0 ${DESTDIR}${MDIR}/miscellaneous.0 + +FRC: -- 2.20.1