aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2015-02-16 14:56:22 +0000
committerIngo Schwarze <schwarze@openbsd.org>2015-02-16 14:56:22 +0000
commitde65759ae10a0dde57d4be5019cd5abfb3dfe4bc (patch)
treecdf4c54edc5f0efad3b6f8b9f9b5d4778f221468 /Makefile
parentcc64f006bae2e1c1378f5d14063a116e6ef4aaaf (diff)
downloadmandoc-de65759ae10a0dde57d4be5019cd5abfb3dfe4bc.tar.gz
mandoc-de65759ae10a0dde57d4be5019cd5abfb3dfe4bc.tar.zst
mandoc-de65759ae10a0dde57d4be5019cd5abfb3dfe4bc.zip
strtonum(3) compat glue
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 57ca330d..eaa62621 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.454 2015/02/03 21:16:02 schwarze Exp $
+# $Id: Makefile,v 1.455 2015/02/16 14:56:22 schwarze Exp $
#
# Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
# Copyright (c) 2011, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
@@ -31,6 +31,7 @@ TESTSRCS = test-dirent-namlen.c \
test-strlcpy.c \
test-strptime.c \
test-strsep.c \
+ test-strtonum.c \
test-wchar.c
SRCS = att.c \
@@ -46,6 +47,7 @@ SRCS = att.c \
compat_strlcat.c \
compat_strlcpy.c \
compat_strsep.c \
+ compat_strtonum.c \
demandoc.c \
eqn.c \
eqn_html.c \
@@ -189,7 +191,8 @@ COMPAT_OBJS = compat_fgetln.o \
compat_strcasestr.o \
compat_strlcat.o \
compat_strlcpy.o \
- compat_strsep.o
+ compat_strsep.o \
+ compat_strtonum.o
MANDOC_HTML_OBJS = eqn_html.o \
html.o \