diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2004-02-01 14:22:47 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2004-02-01 14:22:47 +0000 |
commit | d83da8dd86167d70c17caee90905037aa7c9a050 (patch) | |
tree | 2f0448f32de7c73940b0e24c2b6d839148f6c9e4 /share/doc/papers/memfs | |
parent | f295be55c9122b9f0eac259a4fb6faa4aa309634 (diff) |
add paper.txt target: now you can run `make paper.txt' to build an ASCII
version of the doc;
CAVEATS:
- some characters are not displayable as ascii and generate a warning
(until i get a chance to fix it)
- i haven't had a chance to put a nice left hand margin in the text versions
yet
- postscript output still looks much nicer
Diffstat (limited to 'share/doc/papers/memfs')
-rw-r--r-- | share/doc/papers/memfs/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/share/doc/papers/memfs/Makefile b/share/doc/papers/memfs/Makefile index b8b61acaf5b..d6ecf22189f 100644 --- a/share/doc/papers/memfs/Makefile +++ b/share/doc/papers/memfs/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 2001/02/03 08:14:58 niklas Exp $ +# $OpenBSD: Makefile,v 1.3 2004/02/01 14:22:44 jmc Exp $ DIR= papers/memfs @@ -10,6 +10,8 @@ CLEANFILES=ref.bib.i A.gt paper.t paper.ps: paper.t ${ROFF} tmac.srefs paper.t > ${.TARGET} +paper.txt: paper.t + ${ROFF} -Tascii tmac.srefs paper.t > ${.TARGET} paper.t: ${SRCS} ref.bib.i A.gt ${REFER} ${SRCS} A.gt > ${.TARGET} |