=================================================================== RCS file: /cvs/mandoc/Makefile,v retrieving revision 1.479 retrieving revision 1.481 diff -u -p -r1.479 -r1.481 --- mandoc/Makefile 2015/11/07 21:38:28 1.479 +++ mandoc/Makefile 2016/04/15 21:20:11 1.481 @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.479 2015/11/07 21:38:28 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 \ @@ -268,6 +269,7 @@ SOELIM_OBJS = soelim.o \ compat_err.o \ compat_getline.o \ compat_progname.o \ + compat_reallocarray.o \ compat_stringlist.o WWW_MANS = apropos.1.html \ @@ -292,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 \ @@ -417,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 ---