diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-09-16 22:17:27 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-09-16 22:17:27 +0000 |
commit | 16615cc0fed4c4eb818ce562c0cb3d225577a225 (patch) | |
tree | b10c666097bf95ded988fa6cef20a3ab9eaf71a0 /Makefile | |
parent | fff866326138584471c95aa4b65f20e473c455a2 (diff) | |
download | mandoc-16615cc0fed4c4eb818ce562c0cb3d225577a225.tar.gz |
More updates to html.c.
Secretly enabled -Thtml in main.c (obviously not yet documented).
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -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 |