aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-10-07 12:35:23 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-10-07 12:35:23 +0000
commita38956d48605c5b82c42f5023ba51e80dc6e3728 (patch)
treecd85a23877953bec89a4d3b46e294d054a4990b9 /Makefile
parent532d0bbf2d0b8fc89368559b5ed9db0ad323f032 (diff)
downloadmandoc-a38956d48605c5b82c42f5023ba51e80dc6e3728.tar.gz
mandoc-a38956d48605c5b82c42f5023ba51e80dc6e3728.tar.zst
mandoc-a38956d48605c5b82c42f5023ba51e80dc6e3728.zip
Additions to -Tman -Thtml: all structural components tested & in place.
Fitted both -Thtml with handling of arbitrary vertical and horizontal scaling units (see groff(7)). Undocumented until fitted into -Tascii (next release).
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 9 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 33bff355..47414afc 100644
--- a/Makefile
+++ b/Makefile
@@ -40,11 +40,11 @@ MANSRCS = man_macro.c man.c man_hash.c man_validate.c \
MAINLNS = main.ln mdoc_term.ln chars.ln term.ln tree.ln \
compat.ln man_term.ln html.ln mdoc_html.ln \
- man_html.ln
+ man_html.ln out.ln
MAINOBJS = main.o mdoc_term.o chars.o term.o tree.o compat.o \
- man_term.o html.o mdoc_html.o man_html.o
+ man_term.o html.o mdoc_html.o man_html.o out.o
MAINSRCS = main.c mdoc_term.c chars.c term.c tree.c compat.c \
- man_term.c html.c mdoc_html.c man_html.c
+ man_term.c html.c mdoc_html.c man_html.c out.c
LLNS = llib-llibmdoc.ln llib-llibman.ln llib-lmandoc.ln
LNS = $(MAINLNS) $(MDOCLNS) $(MANLNS)
@@ -54,7 +54,7 @@ SRCS = $(MDOCSRCS) $(MAINSRCS) $(MANSRCS)
DATAS = arch.in att.in lib.in msec.in st.in \
vol.in chars.in
HEADS = mdoc.h libmdoc.h man.h libman.h term.h \
- libmandoc.h html.h chars.h
+ libmandoc.h html.h chars.h out.h
GSGMLS = mandoc.1.sgml mdoc.3.sgml mdoc.7.sgml manuals.7.sgml \
mandoc_char.7.sgml man.7.sgml man.3.sgml
SGMLS = index.sgml $(GSGMLS)
@@ -171,8 +171,11 @@ html.o: html.c html.h chars.h
mdoc_html.ln: mdoc_html.c html.h mdoc.h
mdoc_html.o: mdoc_html.c html.h mdoc.h
-man_html.ln: man_html.c html.h man.h
-man_html.o: man_html.c html.h man.h
+man_html.ln: man_html.c html.h man.h out.h
+man_html.o: man_html.c html.h man.h out.h
+
+out.ln: out.c out.h
+out.o: out.c out.h
tree.ln: tree.c man.h mdoc.h
tree.o: tree.c man.h mdoc.h