aboutsummaryrefslogtreecommitdiff
path: root/share/doc/usd/21.troff/Makefile
diff options
context:
space:
mode:
authorGreg Lehey <grog@FreeBSD.org>2002-05-19 03:30:02 +0000
committerGreg Lehey <grog@FreeBSD.org>2002-05-19 03:30:02 +0000
commit68e7a217f8019b955f87547f218e95ab237597af (patch)
tree0e52356eb0f0c217c5ef258395e5b98dd5bf4eba /share/doc/usd/21.troff/Makefile
parent986d58a9ea67cd59238745da98b01b2d4c333202 (diff)
Initial checkin: 4.4BSD version. These files need to be updated with
current license information and adapted to the FreeBSD build environment before they will build.
Notes
Notes: svn path=/head/; revision=96895
Diffstat (limited to 'share/doc/usd/21.troff/Makefile')
-rw-r--r--share/doc/usd/21.troff/Makefile25
1 files changed, 25 insertions, 0 deletions
diff --git a/share/doc/usd/21.troff/Makefile b/share/doc/usd/21.troff/Makefile
new file mode 100644
index 000000000000..a2509d97a77a
--- /dev/null
+++ b/share/doc/usd/21.troff/Makefile
@@ -0,0 +1,25 @@
+# @(#)Makefile 8.1 (Berkeley) 8/14/93
+# $FreeBSD$
+
+DIR= usd/21.troff
+SRCS= m0 m0a m1 m2 m3 m4 m5
+APNDX= table1 table2
+MACROS= m.mac
+
+all: paper.ps apndx.ps
+
+paper.ps: ${SRCS}
+ ${TBL} ${SRCS} | ${ROFF} - > ${.TARGET}
+
+apndx.ps: ${APNDX}
+ ${TBL} ${APNDX} | ${ROFF} - > ${.TARGET}
+
+clean:
+ rm -f paper.ps apndx.ps *.spell errs Errs make.out
+
+spell: ${SRCS} ${APNDX}
+ @for i in ${PAPER} ${APNDX}; do \
+ echo $$i; spell $$i | sort | comm -23 - spell.ok > $$i.spell; \
+ done
+
+.include <bsd.doc.mk>