summaryrefslogtreecommitdiff
path: root/elisp
diff options
context:
space:
mode:
authorJan Nieuwenhuizen <janneke@gnu.org>2004-07-15 14:33:15 +0000
committerJan Nieuwenhuizen <janneke@gnu.org>2004-07-15 14:33:15 +0000
commit0ff36fefc5c1275ae7855a2c6bbc23d0df71db72 (patch)
tree5f76e970eb672955f9f9be66c5289ff8cbe5aec0 /elisp
parent9458fa215af0294e9c38d62cc3a237a85fe50509 (diff)
* lily/slur.cc: Add quant-score to interface. Fixes web build.
* python/SConscript: * python/vim: * input/mutopia/*SConscript: New file. * scm/define-grobs.scm (all-grob-descriptions): Use ,Slur::height, fixes web build. * make/stepmake.make (scons): re-route to SCONS if user has been running scons in this tree. * SConstruct (config_vars): Add CPPDEFINES. (env): Set checksums type to "content". (save_config_cache): Do not exit after configuring when using checksums (the default) instead of timestamps.
Diffstat (limited to 'elisp')
-rw-r--r--elisp/SConscript13
1 files changed, 7 insertions, 6 deletions
diff --git a/elisp/SConscript b/elisp/SConscript
index 4587ff100f..665e871af6 100644
--- a/elisp/SConscript
+++ b/elisp/SConscript
@@ -1,15 +1,16 @@
# -*-python-*-
-import os
-
Import ('env')
-sources = env['src_glob'] (env, '*.el') + ['lilypond-words']
-#gen_files = map (lambda x: os.path.splitext (x)[0], sources)
-#gens = map (env.AT, sources)
+sources = env['src_glob'] (env, '*.el') + ['lilypond-words.el']
e = env.Copy ()
a = '$PYTHON $srcdir/buildscripts/lilypond-words.py --el --dir=${TARGET.dir}'
-e.Command ('lilypond-words.el', '#/lily/my-lily-lexer.cc', a)
+e.Command ('lilypond-words.el',
+ ['#/lily/my-lily-lexer.cc',
+ '#/buildscripts/lilypond-words.py',
+ '#/scm/new-markup.scm',
+ '#/ly/engraver-init.ly',],
+ a)
dir = env['sharedir_package_version'] + '/elisp'
env.Install (dir, sources)