summaryrefslogtreecommitdiff
path: root/elisp
diff options
context:
space:
mode:
authorJohn Mandereau <john.mandereau@gmail.com>2009-01-05 03:22:01 +0100
committerJohn Mandereau <john.mandereau@gmail.com>2009-01-05 03:29:08 +0100
commit543171165412bc915d8ea1f308d070c74924b2f1 (patch)
tree5e401c33ec74c7bad43c3842e44b2a10b7158a3e /elisp
parentdc22ed0f12ec6c81e04512ab40ed2dbd076712a4 (diff)
Clean up buildscripts
- move scripts from buildscripts/ according to the new ROADMAP, create three directories for this purpose: scripts/aux/, scripts/build/ and python/aux; - make permissions and interpreter specs clearer: all scripts in scripts/build are non-executable and use an interpreter determined in config.make, all scripts in scripts/aux use hard-coded interpreters; - always use built avatars of scripts in scripts/build, as a consequence remove interpreter invocations which are no longer needed; - keep old scripts in buildscripts/ which are junked in the very next commits.
Diffstat (limited to 'elisp')
-rw-r--r--elisp/GNUmakefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/elisp/GNUmakefile b/elisp/GNUmakefile
index 0eab184cd0..9dcdf1ce6e 100644
--- a/elisp/GNUmakefile
+++ b/elisp/GNUmakefile
@@ -16,11 +16,14 @@ include $(depth)/make/stepmake.make
LILYPOND_WORDS = $(outdir)/lilypond-words.el
LILYPOND_WORDS_DEPENDS =\
$(top-src-dir)/lily/lily-lexer.cc \
- $(buildscript-dir)/lilypond-words.py \
+ $(buildscript-dir)/lilypond-words \
$(top-src-dir)/scm/markup.scm \
$(top-src-dir)/ly/engraver-init.ly
+$(buildscript-dir)/lilypond-words:
+ make -C $(depth)/scripts/build
+
$(LILYPOND_WORDS):
- cd $(top-src-dir) && $(PYTHON) buildscripts/lilypond-words.py --el --dir=$(top-build-dir)/elisp/$(outconfbase)
+ cd $(top-src-dir) && $(buildscript-dir)/lilypond-words --el --dir=$(top-build-dir)/elisp/$(outconfbase)
all: $(LILYPOND_WORDS)