aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-09-21 00:39:02 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-09-21 00:39:02 +0000
commitd0543a3660a1e6e3c8b059711e05eb883741da7c (patch)
treeed269ecb332c95f5cd662c5be35d05d4635ae911 /Makefile
parent8efbffe562724d0dc33a569b4d81f859e71e597c (diff)
downloadmandoc-d0543a3660a1e6e3c8b059711e05eb883741da7c.tar.gz
mandoc-d0543a3660a1e6e3c8b059711e05eb883741da7c.tar.zst
mandoc-d0543a3660a1e6e3c8b059711e05eb883741da7c.zip
Tentative addition of front-end utility functions (out.h) (not sure if it's necessary).
More -Thtml installments.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 8 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 4b2da44c..4296f683 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 chars.ln term.ln tree.ln \
- compat.ln man_term.ln html.ln
+ compat.ln man_term.ln html.ln out.ln
MAINOBJS = main.o mdoc_term.o chars.o term.o tree.o compat.o \
- man_term.o html.o
+ man_term.o html.o out.o
MAINSRCS = main.c mdoc_term.c chars.c term.c tree.c compat.c \
- man_term.c html.c
+ man_term.c html.c out.c
LLNS = llib-llibmdoc.ln llib-llibman.ln llib-lmandoc.ln
LNS = $(MAINLNS) $(MDOCLNS) $(MANLNS)
@@ -156,8 +156,11 @@ 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
+html.ln: html.c out.h man.h mdoc.h
+html.o: html.c out.h man.h mdoc.h
+
+out.ln: out.c out.h man.h mdoc.h
+out.o: out.c out.h man.h mdoc.h
tree.ln: tree.c man.h mdoc.h
tree.o: tree.c man.h mdoc.h