diff options
| author | Benjamin J. Culkin <bjculkin@mix.wvu.edu> | 2020-10-08 18:19:14 -0300 |
|---|---|---|
| committer | Benjamin J. Culkin <bjculkin@mix.wvu.edu> | 2020-10-08 18:19:14 -0300 |
| commit | 1b857d0d1fad5bf91ee9bd8d03e3f662c26bfea4 (patch) | |
| tree | 7c5d05c3960d080f91da2f5bbdf810cb6cfa7287 /clformat/docs/Makefile | |
| parent | 3a818da77acf50e7ea0d2c02d669cb67b9f114e3 (diff) | |
Begin documentation update
This update converts the documentation from the cursory Markdown in the
README.md file, and converts it into a typeset document, using Groff and
the MS macro package.
Currently, almost all of the existing documentation has been typeset,
and soon, I will work on continuing from where I had left off.
Diffstat (limited to 'clformat/docs/Makefile')
| -rw-r--r-- | clformat/docs/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/clformat/docs/Makefile b/clformat/docs/Makefile new file mode 100644 index 0000000..c2ad7f4 --- /dev/null +++ b/clformat/docs/Makefile @@ -0,0 +1,22 @@ +.PHONY: all clean + +all: clformat.pdf + +clean: + rm clformat.pdf + +clformat.pdf: clformat.ps + ps2pdf clformat.ps clformat.pdf + rm clformat.ps + +clformat.ps: clformat.ms + groff -ms -s -t -Tps clformat.ms > clformat.ps + +clformat.ms: clformat.tmac + touch clformat.ms + +clformat.tmac: + touch clformat.tmac + +preview: clformat.pdf + fbpdf clformat.pdf |
