From 3528b81f8a8496a98b978b51fa8b7f22a3eac6a8 Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Fri, 12 Jul 2024 16:28:18 +0200 Subject: [PATCH] tools: Move codegen tools to 'tools' directory --- Makefile.am | 5 +++-- genChRanges.py => tools/genChRanges.py | 0 genUnicode.py => tools/genUnicode.py | 0 gentest.py => tools/gentest.py | 0 4 files changed, 3 insertions(+), 2 deletions(-) rename genChRanges.py => tools/genChRanges.py (100%) rename genUnicode.py => tools/genUnicode.py (100%) rename gentest.py => tools/gentest.py (100%) diff --git a/Makefile.am b/Makefile.am index 08939db0..39fcbae4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -155,7 +155,7 @@ testdso_la_LDFLAGS = $(AM_LDFLAGS) \ # that one forces the rebuild when "make rebuild" is run on doc/ rebuild_testapi: -@(if [ "$(PYTHON)" != "" ] ; then \ - $(PYTHON) $(srcdir)/gentest.py $(srcdir) ; fi ) + $(PYTHON) $(srcdir)/tools/gentest.py $(srcdir) ; fi ) testapi_SOURCES=testapi.c testapi_DEPENDENCIES = $(DEPS) @@ -209,7 +209,8 @@ DISTCLEANFILES = COPYING missing.lst EXTRA_DIST = Copyright libxml2-config.cmake.in autogen.sh \ libxml.h iso8859x.inc \ - genUnicode.py \ + tools/gentest.py \ + tools/genChRanges tools/genUnicode.py \ libxml2.syms timsort.h \ README.zOS README.md \ CMakeLists.txt config.h.cmake.in libxml2-config.cmake.cmake.in \ diff --git a/genChRanges.py b/tools/genChRanges.py similarity index 100% rename from genChRanges.py rename to tools/genChRanges.py diff --git a/genUnicode.py b/tools/genUnicode.py similarity index 100% rename from genUnicode.py rename to tools/genUnicode.py diff --git a/gentest.py b/tools/gentest.py similarity index 100% rename from gentest.py rename to tools/gentest.py