aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-09-16 22:17:27 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-09-16 22:17:27 +0000
commit6f8fe1982a3b763cad6bc6f48f3dc1c2f19281d9 (patch)
tree2dbc13f1b26756d1354d380a65b851961a24b08c /Makefile
parentea750887d0d1dfad81d0f7e066c720defe06e08a (diff)
downloadmandoc-6f8fe1982a3b763cad6bc6f48f3dc1c2f19281d9.tar.gz
mandoc-6f8fe1982a3b763cad6bc6f48f3dc1c2f19281d9.tar.zst
mandoc-6f8fe1982a3b763cad6bc6f48f3dc1c2f19281d9.zip
More updates to html.c.
Secretly enabled -Thtml in main.c (obviously not yet documented).
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index c8324467..24cad136 100644
--- a/Makefile
+++ b/Makefile
@@ -36,11 +36,11 @@ MANSRCS = man_macro.c man.c man_hash.c man_validate.c \
man_action.c mandoc.c man_argv.c
MAINLNS = main.ln mdoc_term.ln ascii.ln term.ln tree.ln \
- compat.ln man_term.ln
+ compat.ln man_term.ln html.ln
MAINOBJS = main.o mdoc_term.o ascii.o term.o tree.o compat.o \
- man_term.o
+ man_term.o html.o
MAINSRCS = main.c mdoc_term.c ascii.c term.c tree.c compat.c \
- man_term.c
+ man_term.c html.c
LLNS = llib-llibmdoc.ln llib-llibman.ln llib-lmandoc.ln
LNS = $(MAINLNS) $(MDOCLNS) $(MANLNS)
@@ -156,6 +156,9 @@ compat.o: compat.c
term.ln: term.c term.h man.h mdoc.h
term.o: term.c term.h man.h mdoc.h
+html.ln: html.c man.h mdoc.h
+html.o: html.c man.h mdoc.h
+
tree.ln: tree.c man.h mdoc.h
tree.o: tree.c man.h mdoc.h