diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-09-09 19:21:22 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-09-09 19:24:18 +0200 |
commit | a7d28d3fed7748dcaedbcac8902cb9e1339cb078 (patch) | |
tree | 27ade89428d7e693cad1f6a8ccdd4fae17694b16 /src/Makefile.am | |
parent | 92410755ec3bc866774d7353b88a0bc9ed7c9aff (diff) | |
download | sciteco-a7d28d3fed7748dcaedbcac8902cb9e1339cb078.tar.gz |
symbols-extract.tes works in 8-bit mode now (refs #5)
* significantly speeds up build time
* Scintilla and Lexilla headers and symbols are all-ASCII anyway.
* We should probably have a look at the quicksort implementation
in string.tes, as it can probably be optimized in UTF-8 documents as well.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 306dbe9..5b2572e 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -98,10 +98,10 @@ CLEANFILES = $(BUILT_SOURCES) \ symbols-scintilla.c : @SCINTILLA_PATH@/include/Scintilla.h \ symbols-extract.tes - $(SCITECO_MINIMAL) -m -- @srcdir@/symbols-extract.tes \ + $(SCITECO_MINIMAL) -8m -- @srcdir@/symbols-extract.tes \ -p "SCI_" -n teco_symbol_list_scintilla $@ $< symbols-scilexer.c : @LEXILLA_PATH@/include/SciLexer.h \ symbols-extract.tes - $(SCITECO_MINIMAL) -m -- @srcdir@/symbols-extract.tes \ + $(SCITECO_MINIMAL) -8m -- @srcdir@/symbols-extract.tes \ -p "SCE_" -n teco_symbol_list_scilexer $@ $< |