summaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-07-22 10:50:46 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-07-22 10:50:46 +0000
commit6d8d387d78183a69812a1111b555a69f4211d319 (patch)
tree69b1541efb7ab0b27445cdcf9b39c4b9b621b039 /Makefile
parent570cd5948dac1d0dce231548ebbd3ae98bd2d187 (diff)
downloadmandoc-6d8d387d78183a69812a1111b555a69f4211d319.tar.gz
mandoc-6d8d387d78183a69812a1111b555a69f4211d319.tar.zst
mandoc-6d8d387d78183a69812a1111b555a69f4211d319.zip
Add character output (-Tpdf, -Tps, -Tascii) for equations. This is the
minimum: unseparated terms.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index eb9efb82..03d00fdd 100644
--- a/Makefile
+++ b/Makefile
@@ -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 \