author | karl <> | 2003年09月13日 22:54:58 +0000 |
---|---|---|
committer | karl <> | 2003年09月13日 22:54:58 +0000 |
commit | 757e24b43e8702b730d5ca8d053d373ba588fc7d (patch) | |
tree | 0c3da82277d3c974257fc1e1880b7ad2db443c1b | |
download | teximpatient-757e24b43e8702b730d5ca8d053d373ba588fc7d.tar.gz |
-rw-r--r-- | Makefile | 15 |
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c21e398 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +# public domain +all: book.dvi book.pdf #book.html + +book.dvi: fdl.tex preface.tex + tex '\nonstopmode\input book' +book.pdf: fdl.tex preface.tex + pdftex '\nonstopmode\input book' +book.html: + httex book.tex + +dist: all + rm -f x.tex + tar czf impatient.tgz Makefile README *.icn errata.future \ + *.tex book.aux book.idx book.toc book.ccs book.sdx \ + book.dvi book.pdf |