diff options
author | Jan Nieuwenhuizen <janneke@gnu.org> | 2005-10-19 13:54:23 +0000 |
---|---|---|
committer | Jan Nieuwenhuizen <janneke@gnu.org> | 2005-10-19 13:54:23 +0000 |
commit | 078703a6ab29f75983a55ac2cc35fe5f315da574 (patch) | |
tree | ad7605418a5a3f93c431fc93dab1bec5c13b110e /elisp | |
parent | 75e2b24fabd5962901580b0d3627cee6b0aa41c1 (diff) |
* stepmake/stepmake/*:
* */GNUmakefile:
* config.make.in:
* GNUmakefile.in:
* stepmake/aclocal.m4: Friendlier --srcdir build, allowing `make'
from any directory in build-dir. Cleanups.
* make/srcdir.make.in: Remove.
* lily/main.cc (setup_paths): Fix and document build-dir hack.
Diffstat (limited to 'elisp')
-rw-r--r-- | elisp/GNUmakefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/elisp/GNUmakefile b/elisp/GNUmakefile index 97558ad019..efb2026eab 100644 --- a/elisp/GNUmakefile +++ b/elisp/GNUmakefile @@ -14,12 +14,12 @@ include $(depth)/make/stepmake.make LILYPOND_WORDS = $(outdir)/lilypond-words.el LILYPOND_WORDS_DEPENDS =\ - $(topdir)/lily/lily-lexer.cc \ + $(top-src-dir)/lily/lily-lexer.cc \ $(buildscript-dir)/lilypond-words.py \ - $(topdir)/scm/markup.scm \ - $(topdir)/ly/engraver-init.ly + $(top-src-dir)/scm/markup.scm \ + $(top-src-dir)/ly/engraver-init.ly $(LILYPOND_WORDS): - cd $(topdir) && $(PYTHON) buildscripts/lilypond-words.py --el --dir=$(builddir)/elisp/$(outconfbase) + cd $(top-src-dir) && $(PYTHON) buildscripts/lilypond-words.py --el --dir=$(top-build-dir)/elisp/$(outconfbase) all: $(LILYPOND_WORDS) |