=================================================================== RCS file: /cvs/mandoc/Makefile,v retrieving revision 1.478 retrieving revision 1.481 diff -u -p -r1.478 -r1.481 --- mandoc/Makefile 2015/11/07 20:52:52 1.478 +++ mandoc/Makefile 2016/04/15 21:20:11 1.481 @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.478 2015/11/07 20:52:52 schwarze Exp $ +# $Id: Makefile,v 1.481 2016/04/15 21:20:11 schwarze Exp $ # # Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons # Copyright (c) 2011, 2013, 2014, 2015 Ingo Schwarze @@ -138,6 +138,7 @@ DISTFILES = INSTALL \ makewhatis.8 \ man.1 \ man.7 \ + man.cgi.3 \ man.cgi.8 \ man.conf.5 \ man.h \ @@ -264,7 +265,12 @@ MANPAGE_OBJS = manpage.o mansearch.o mansearch_const. DEMANDOC_OBJS = demandoc.o -SOELIM_OBJS = soelim.o compat_stringlist.o +SOELIM_OBJS = soelim.o \ + compat_err.o \ + compat_getline.o \ + compat_progname.o \ + compat_reallocarray.o \ + compat_stringlist.o WWW_MANS = apropos.1.html \ demandoc.1.html \ @@ -288,6 +294,7 @@ WWW_MANS = apropos.1.html \ roff.7.html \ tbl.7.html \ makewhatis.8.html \ + man.cgi.3.html \ man.cgi.8.html \ man.h.html \ manconf.h.html \ @@ -413,8 +420,8 @@ man.cgi: $(CGI_OBJS) libmandoc.a demandoc: $(DEMANDOC_OBJS) libmandoc.a $(CC) $(LDFLAGS) -o $@ $(DEMANDOC_OBJS) libmandoc.a $(DBLIB) -soelim: $(SOELIM_OBJS) compat_reallocarray.o - $(CC) $(LDFLAGS) -o $@ $(SOELIM_OBJS) compat_reallocarray.o +soelim: $(SOELIM_OBJS) + $(CC) $(LDFLAGS) -o $@ $(SOELIM_OBJS) # --- maintainer targets ---