summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2018-11-28 14:55:58 -0800
committerH. Peter Anvin <hpa@zytor.com>2018-11-28 14:55:58 -0800
commit1350620bf1dc474b39ca05eb9ba23813a90042b5 (patch)
tree3ba5001319b61d490d63f96bcd13c2efacd38fcf /Makefile.in
parent099cc177398df447ee7153ab29337f00dbcc9d16 (diff)
downloadnasm-1350620bf1dc474b39ca05eb9ba23813a90042b5.tar.gz
ctype: create our own ctype table
Create our own ctype table where we can do the tests we want to do cheaply, instead of calling ctype functions and then adding additional tests all over the code. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 949d0131..ba0ae26a 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -97,7 +97,7 @@ LIBOBJ = stdlib/snprintf.$(O) stdlib/vsnprintf.$(O) stdlib/strlcpy.$(O) \
\
nasmlib/ver.$(O) \
nasmlib/crc64.$(O) nasmlib/malloc.$(O) \
- nasmlib/md5c.$(O) nasmlib/string.$(O) \
+ nasmlib/md5c.$(O) nasmlib/string.$(O) nasmlib/nctype.$(O) \
nasmlib/file.$(O) nasmlib/mmap.$(O) nasmlib/ilog2.$(O) \
nasmlib/realpath.$(O) nasmlib/path.$(O) \
nasmlib/filename.$(O) nasmlib/srcfile.$(O) \