From 31de5573a9c7e3a69b5ab67e2b0734ba88285b64 Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Thu, 24 Jul 2003 17:34:49 +0000 Subject: [PATCH] * cygwin/changelog: * cygwin/mknetrel: Update. * GNUmakefile.in (web-install): Rename (was: install-html-doc). (html-doc): Remove (use: web). * stepmake/stepmake/script-rules.make: * stepmake/stepmake/python-module-rules.make ($(outdir)/%.py): Fix $(config_make) dependencies for srcdir build. * stepmake/stepmake/generic-targets.make ($(config_make)): Fix target for srcdir build. * stepmake/make/stepmake.make: * make/srcdir.make.in: * GNUmakefile.in: * make/stepmake.make (config_make): Rename variable (was: configuration). --- ChangeLog | 21 +++++++++++++++++++++ GNUmakefile.in | 5 ++--- cygwin/mknetrel | 21 ++++++++++----------- make/srcdir.make.in | 2 +- make/stepmake.make | 8 ++++---- stepmake/make/stepmake.make | 8 ++++---- stepmake/stepmake/generic-targets.make | 5 +++-- stepmake/stepmake/python-module-rules.make | 2 +- stepmake/stepmake/script-rules.make | 12 ++++++------ 9 files changed, 52 insertions(+), 32 deletions(-) diff --git a/ChangeLog b/ChangeLog index f7e99a0e64..c3af5190c5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,24 @@ +2003-07-24 Jan Nieuwenhuizen + + * cygwin/changelog: + * cygwin/mknetrel: Update. + + * GNUmakefile.in (web-install): Rename (was: install-html-doc). + (html-doc): Remove (use: web). + + * stepmake/stepmake/script-rules.make: + * stepmake/stepmake/python-module-rules.make ($(outdir)/%.py): + Fix $(config_make) dependencies for srcdir build. + + * stepmake/stepmake/generic-targets.make ($(config_make)): Fix + target for srcdir build. + + * stepmake/make/stepmake.make: + * make/srcdir.make.in: + * GNUmakefile.in: + * make/stepmake.make (config_make): Rename variable (was: + configuration). + 2003-07-24 Han-Wen Nienhuys * Documentation/user/internals.itely (Manipulating music diff --git a/GNUmakefile.in b/GNUmakefile.in index 09830cffe1..c24afc61ad 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -23,7 +23,7 @@ IN_FILES := $(wildcard *.in) EXTRA_DIST_FILES = $(wildcard *.el) vimrc VERSION $(README_FILES) $(SCRIPTS) $(IN_FILES) emacsclient.patch lexer-gcc-3.0.patch server.el.patch darwin.patch .cvsignore lexer-gcc-3.1.sh lilypond.words NON_ESSENTIAL_DIST_FILES = $(README_TXT_FILES) INSTALLATION_DIR=$(local_lilypond_datadir) -INSTALLATION_FILES=$(configuration) VERSION +INSTALLATION_FILES=$(config_make) VERSION # bootstrap stepmake: # @@ -38,8 +38,7 @@ pfa-fonts: (cd $(builddir)/share/lilypond/fonts && \ tar czvf ../../../$(outbase)/type1.tar.gz type1/*.pfa type1/fonts.* type1/lilypond.* ) -html-doc: web -install-html-doc: +web-install: $(INSTALL) -m 755 -d $(local_package_docdir) tar -C $(local_package_docdir)/ -xzf $(outdir)/web.tar.gz diff --git a/cygwin/mknetrel b/cygwin/mknetrel index fbac630e42..36255076cd 100644 --- a/cygwin/mknetrel +++ b/cygwin/mknetrel @@ -6,11 +6,11 @@ # LilyPond development: lilypond-1.7 # archive=ftp://lilypond.org/pub/LilyPond/v1.7 -# Guile specific mknetrel overrides +# LilyPond mknetrel overrides # To use this, do something like: cat >/dev/null </dev/null < $@ chmod 755 $@ diff --git a/stepmake/stepmake/script-rules.make b/stepmake/stepmake/script-rules.make index f15e6831e5..9c7e0e7cef 100644 --- a/stepmake/stepmake/script-rules.make +++ b/stepmake/stepmake/script-rules.make @@ -1,25 +1,25 @@ -$(outdir)/%: %.pl $(builddir)/config.make +$(outdir)/%: %.pl $(config_make) cat $< | sed $(sed-atvariables) > $@ chmod 755 $@ -$(outdir)/%: %.bash $(builddir)/config.make +$(outdir)/%: %.bash $(config_make) cat $< | sed $(sed-atvariables) > $@ chmod 755 $@ -$(outdir)/%: %.scm $(builddir)/config.make +$(outdir)/%: %.scm $(config_make) cat $< | sed $(sed-atvariables) > $@ chmod 755 $@ -$(outdir)/%: %.expect $(builddir)/config.make +$(outdir)/%: %.expect $(config_make) cat $< | sed $(sed-atvariables) > $@ chmod 755 $@ -$(outdir)/%: %.sh $(builddir)/config.make +$(outdir)/%: %.sh $(config_make) cat $< | sed $(sed-atvariables) > $@ chmod 755 $@ -$(outdir)/%: %.py $(builddir)/config.make +$(outdir)/%: %.py $(config_make) cat $< | sed $(sed-atvariables) > $@ chmod 755 $@ -- 2.39.2