diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2009-10-21 19:13:52 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2009-10-21 19:13:52 +0000 |
commit | f25c32e303567fa59cdd5d7a6851369d4d3814dd (patch) | |
tree | cb695616f65efe94590cc3ab28677dd1f75a9aac /usr.bin/mandoc/Makefile | |
parent | de87ce08d2cfb78f17463278c42af6590de96a88 (diff) |
sync to 1.9.9, featuring:
* -Thtml output mode
* roff scaling units
* and some minor fixes
for full changelogs, see http://bsd.lv/cgi-bin/cvsweb.cgi/
Diffstat (limited to 'usr.bin/mandoc/Makefile')
-rw-r--r-- | usr.bin/mandoc/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/mandoc/Makefile b/usr.bin/mandoc/Makefile index 711a40fd398..9c6f0c24dec 100644 --- a/usr.bin/mandoc/Makefile +++ b/usr.bin/mandoc/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.19 2009/10/19 09:16:58 schwarze Exp $ +# $OpenBSD: Makefile,v 1.20 2009/10/21 19:13:50 schwarze Exp $ .include <bsd.own.mk> -VERSION=1.9.2 +VERSION=1.9.9 CFLAGS+=-DVERSION=\"${VERSION}\" CFLAGS+=-W -Wall -Wstrict-prototypes .if ${USE_GCC3:L} != "no" @@ -15,6 +15,7 @@ SRCS= mandoc.c mdoc_macro.c mdoc.c mdoc_hash.c mdoc_strings.c \ SRCS+= man_macro.c man.c man_hash.c man_validate.c \ man_action.c man_argv.c SRCS+= main.c mdoc_term.c chars.c term.c tree.c man_term.c +SRCS+= html.c mdoc_html.c man_html.c out.c PROG= mandoc |