diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-07-22 10:50:46 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-07-22 10:50:46 +0000 |
commit | 16b40a0ceac84afe1ca3122b48c8cb7ef28111cf (patch) | |
tree | db94009a47e9ef95cb5bba76c3675982ecd06be0 /Makefile | |
parent | cb7c07f33b511f1525975bfd609094b8930f2153 (diff) | |
download | mandoc-16b40a0ceac84afe1ca3122b48c8cb7ef28111cf.tar.gz |
Add character output (-Tpdf, -Tps, -Tascii) for equations. This is the
minimum: unseparated terms.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -50,6 +50,7 @@ SRCS = Makefile \ config.h.pre \ eqn.7 \ eqn.c \ + eqn_term.c \ example.style.css \ external.png \ html.c \ @@ -200,13 +201,15 @@ MANDOC_HTML_LNS = html.ln \ mdoc_html.ln \ tbl_html.ln -MANDOC_TERM_OBJS = man_term.o \ +MANDOC_TERM_OBJS = eqn_term.o \ + man_term.o \ mdoc_term.o \ term.o \ term_ascii.o \ term_ps.o \ tbl_term.o -MANDOC_TERM_LNS = man_term.ln \ +MANDOC_TERM_LNS = eqn_term.ln \ + man_term.ln \ mdoc_term.ln \ term.ln \ term_ascii.ln \ |