=================================================================== RCS file: /cvs/mandoc/Makefile,v retrieving revision 1.476 retrieving revision 1.480 diff -u -p -r1.476 -r1.480 --- mandoc/Makefile 2015/11/07 13:14:21 1.476 +++ mandoc/Makefile 2015/11/07 21:53:14 1.480 @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.476 2015/11/07 13:14:21 schwarze Exp $ +# $Id: Makefile,v 1.480 2015/11/07 21:53:14 schwarze Exp $ # # Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons # Copyright (c) 2011, 2013, 2014, 2015 Ingo Schwarze @@ -21,8 +21,8 @@ VERSION = 1.13.3 TESTSRCS = test-dirent-namlen.c \ test-err.c \ - test-fgetln.c \ test-fts.c \ + test-getline.c \ test-getsubopt.c \ test-isblank.c \ test-mkdtemp.c \ @@ -47,8 +47,8 @@ SRCS = att.c \ cgi.c \ chars.c \ compat_err.c \ - compat_fgetln.c \ compat_fts.c \ + compat_getline.c \ compat_getsubopt.c \ compat_isblank.c \ compat_mkdtemp.c \ @@ -207,8 +207,8 @@ LIBMANDOC_OBJS = $(LIBMAN_OBJS) \ read.o COMPAT_OBJS = compat_err.o \ - compat_fgetln.o \ compat_fts.o \ + compat_getline.o \ compat_getsubopt.o \ compat_isblank.o \ compat_mkdtemp.o \ @@ -264,7 +264,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 \ @@ -413,8 +418,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 ---