summaryrefslogtreecommitdiff
path: root/src/Makefile.in
diff options
context:
space:
mode:
authorJoe Orton <joe@manyfish.uk>2022-09-03 16:52:34 +0100
committerJoe Orton <jorton@apache.org>2022-09-03 17:17:34 +0100
commit740dd9a85f4813a012a6f1583d705e42c7174302 (patch)
treed56da1dd88c3b33f3b500194222c09696820b4af /src/Makefile.in
parentfc27f8542c08d09ffe89c006366ea797b49e9929 (diff)
downloadneon-git-740dd9a85f4813a012a6f1583d705e42c7174302.tar.gz
Add character lookup table generator utility, and fix a extparam
encoding issue. * src/mktable.c: New file. * src/ne_string.c: Use generated character lookup tables. Use lookup tables for base64 validity tests. Fix extparam encoding for numerals. * test/string-tests.c (strparam): Add test for numerals.
Diffstat (limited to 'src/Makefile.in')
-rw-r--r--src/Makefile.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 8e88f73..588419e 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -82,6 +82,9 @@ clean:
rm -f $(NEON_TARGET) *.o *.lo *.bbg *.bb *.gc*
rm -rf .libs
+mktable: mktable.lo
+ $(LINK) -o $@ mktable.lo
+
c++.c:
find . -name ne_\*.h -print | sed 's/.*/#include "&"/;/ne_priv/d' > $@
echo "int main(void) {}" >> $@