diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-01-27 01:18:00 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-01-27 01:18:00 +0100 |
commit | 7e4014c5936e59251044c595d20b6978e69f8568 (patch) | |
tree | 6be9a446c596857fdf3f44a4815743d90edb092e /Makefile.am | |
parent | 922b99b474d352f6a00b327d83efc0a3cee823f3 (diff) | |
download | sciteco-7e4014c5936e59251044c595d20b6978e69f8568.tar.gz |
revised lexer configuration using SciTE property files and Textadept's terminal color definitions
* lexer config is now in separate file installed into the package data dir,
so it can be excluded from the teco.ini template.
* teco.ini is generated so it can load an installed lexer.tes as ED hook
(can still be dropped into the user's home and will work immediately)
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am index 9d0fada..eb38c7d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -15,11 +15,14 @@ REPL_MACRO = eb$<\e \ <fs@DATE^Q@\e$(shell @DATE@ "+%d %b %Y")\e;>j \ ew$@\e -dist_pkgdata_DATA = teco.ini +pkgdata_DATA = teco.ini +EXTRA_DIST = teco.ini.in +CLEANFILES = teco.ini +dist_pkgdata_DATA = lexer.tes man_MANS = sciteco.1 -EXTRA_DIST = sciteco.1.in -CLEANFILES = sciteco.1 +EXTRA_DIST += sciteco.1.in +CLEANFILES += sciteco.1 noinst_HEADERS = compat/bsd/sys/cdefs.h \ compat/bsd/sys/queue.h \ @@ -29,5 +32,5 @@ EXTRA_DIST += patches/scintilla-teco-control-codes.patch EXTRA_DIST += TODO -sciteco.1 : sciteco.1.in +% : %.in $(BOOTSTRAP_SCITECO) -e $$'$(REPL_MACRO)' |