diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-09-21 00:39:02 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-09-21 00:39:02 +0000 |
commit | 84de4aaba316365a7bda50f7a3a0bf3b047c329e (patch) | |
tree | 3a69d82c4cad97fb0cc7f4e112577612d6e41387 /Makefile | |
parent | bb2d3ba343c8f86f5aad0294e970d793c88194ab (diff) | |
download | mandoc-84de4aaba316365a7bda50f7a3a0bf3b047c329e.tar.gz |
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-- | Makefile | 13 |
1 files changed, 8 insertions, 5 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 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 |