=================================================================== RCS file: /cvs/mandoc/Makefile,v retrieving revision 1.358 retrieving revision 1.361 diff -u -p -r1.358 -r1.361 --- mandoc/Makefile 2011/07/18 07:46:41 1.358 +++ mandoc/Makefile 2011/07/24 10:09:03 1.361 @@ -11,8 +11,8 @@ # in the lower-left hand corner of -mdoc manuals. # CFLAGS += -DOSNAME="\"OpenBSD 4.5\"" -VERSION = 1.11.4 -VDATE = 12 July 2011 +VERSION = 1.11.5 +VDATE = 24 July 2011 # IFF your system supports multi-byte functions (setlocale(), wcwidth(), # putwchar()) AND has __STDC_ISO_10646__ (that is, wchar_t is simply a # UCS-4 value) should you define USE_WCHAR. If you define it and your @@ -50,6 +50,8 @@ SRCS = Makefile \ config.h.pre \ eqn.7 \ eqn.c \ + eqn_html.c \ + eqn_term.c \ example.style.css \ external.png \ html.c \ @@ -191,22 +193,26 @@ $(LIBMDOC_OBJS) $(LIBMDOC_LNS): libmdoc.h $(LIBROFF_OBJS) $(LIBROFF_LNS): libroff.h $(LIBMANDOC_OBJS) $(LIBMANDOC_LNS): mandoc.h mdoc.h man.h libmandoc.h config.h -MANDOC_HTML_OBJS = html.o \ +MANDOC_HTML_OBJS = eqn_html.o \ + html.o \ man_html.o \ mdoc_html.o \ tbl_html.o -MANDOC_HTML_LNS = html.ln \ +MANDOC_HTML_LNS = eqn_html.ln \ + html.ln \ man_html.ln \ mdoc_html.ln \ tbl_html.ln -MANDOC_TERM_OBJS = man_term.o \ +MANDOC_TERM_OBJS = eqn_term.o \ + man_term.o \ mdoc_term.o \ term.o \ term_ascii.o \ term_ps.o \ tbl_term.o -MANDOC_TERM_LNS = man_term.ln \ +MANDOC_TERM_LNS = eqn_term.ln \ + man_term.ln \ mdoc_term.ln \ term.ln \ term_ascii.ln \