diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-08-03 17:56:04 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-08-03 18:01:34 +0300 |
commit | c5510d684e4879ab9a5295b4a1981888a4268627 (patch) | |
tree | 328f1b014af9e546976205e5377dcb8ce8c438d9 /src | |
parent | 9f6b229b9b10471233f10fdb50e8a70d5d2789cd (diff) | |
download | sciteco-c5510d684e4879ab9a5295b4a1981888a4268627.tar.gz |
simplified the htbl.tes preprocessor and the SUBST_MACRO using new --quiet, --stdin and --stdout options
* htbl.tes now reads from stdin and writes to stdout.
Allows avoiding temporary `*.htbl` files
* grosciteco.tes still cannot be simplified since --stdin cannot be combined with
passing command-line arguments (FIXME).
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index ff2e86b..f22802b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -103,6 +103,8 @@ endif CLEANFILES = $(BUILT_SOURCES) \ symbols-scintilla.c symbols-scilexer.c +# FIXME: Perhaps symbols-extract.tes should work with --stdin/--stdout. +# Requires changing the command-line argument passing first. symbols-scintilla.c : @SCINTILLA_PATH@/include/Scintilla.h \ symbols-extract.tes $(SCITECO_MINIMAL) -8m -- @srcdir@/symbols-extract.tes \ |