=================================================================== RCS file: /cvs/mandoc/Makefile,v retrieving revision 1.508 retrieving revision 1.510 diff -u -p -r1.508 -r1.510 --- mandoc/Makefile 2017/04/24 23:32:00 1.508 +++ mandoc/Makefile 2017/05/04 22:16:09 1.510 @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.508 2017/04/24 23:32:00 schwarze Exp $ +# $Id: Makefile,v 1.510 2017/05/04 22:16:09 schwarze Exp $ # # Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons # Copyright (c) 2011, 2013-2017 Ingo Schwarze @@ -85,7 +85,6 @@ SRCS = att.c \ lib.c \ main.c \ man.c \ - man_hash.c \ man_html.c \ man_macro.c \ man_term.c \ @@ -99,7 +98,6 @@ SRCS = att.c \ mansearch.c \ mdoc.c \ mdoc_argv.c \ - mdoc_hash.c \ mdoc_html.c \ mdoc_macro.c \ mdoc_man.c \ @@ -112,6 +110,8 @@ SRCS = att.c \ preconv.c \ read.c \ roff.c \ + roff_html.c \ + roff_term.c \ soelim.c \ st.c \ tag.c \ @@ -198,7 +198,6 @@ DISTFILES = INSTALL \ $(TESTSRCS) LIBMAN_OBJS = man.o \ - man_hash.o \ man_macro.o \ man_validate.o @@ -206,7 +205,6 @@ LIBMDOC_OBJS = att.o \ lib.o \ mdoc.o \ mdoc_argv.o \ - mdoc_hash.o \ mdoc_macro.o \ mdoc_state.o \ mdoc_validate.o \ @@ -250,11 +248,13 @@ MANDOC_HTML_OBJS = eqn_html.o \ html.o \ man_html.o \ mdoc_html.o \ + roff_html.o \ tbl_html.o MANDOC_TERM_OBJS = eqn_term.o \ man_term.o \ mdoc_term.o \ + roff_term.o \ term.o \ term_ascii.o \ term_ps.o \