aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2015-11-07 20:52:52 +0000
committerIngo Schwarze <schwarze@openbsd.org>2015-11-07 20:52:52 +0000
commit91090b741273a8ad6061114d369045a4b16a580c (patch)
tree094288d07d953ce24e6d9eeccc5d4350f43a6c6e /Makefile
parent52461cacec49af96b6b0643f4322e9fc0b36d403 (diff)
downloadmandoc-91090b741273a8ad6061114d369045a4b16a580c.tar.gz
mandoc-91090b741273a8ad6061114d369045a4b16a580c.tar.zst
mandoc-91090b741273a8ad6061114d369045a4b16a580c.zip
provide a simple stand-alone implementation of getline(3)
for systems lacking it
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fa3cee7c..07972261 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.477 2015/11/07 17:58:55 schwarze Exp $
+# $Id: Makefile,v 1.478 2015/11/07 20:52:52 schwarze Exp $
#
# Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
# Copyright (c) 2011, 2013, 2014, 2015 Ingo Schwarze <schwarze@openbsd.org>
@@ -22,6 +22,7 @@ VERSION = 1.13.3
TESTSRCS = test-dirent-namlen.c \
test-err.c \
test-fts.c \
+ test-getline.c \
test-getsubopt.c \
test-isblank.c \
test-mkdtemp.c \
@@ -47,6 +48,7 @@ SRCS = att.c \
chars.c \
compat_err.c \
compat_fts.c \
+ compat_getline.c \
compat_getsubopt.c \
compat_isblank.c \
compat_mkdtemp.c \
@@ -206,6 +208,7 @@ LIBMANDOC_OBJS = $(LIBMAN_OBJS) \
COMPAT_OBJS = compat_err.o \
compat_fts.o \
+ compat_getline.o \
compat_getsubopt.o \
compat_isblank.o \
compat_mkdtemp.o \