From cd1f8b92f42f16532fb6c7e4004d9d4f209de4b5 Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 20:09:00 +0000 Subject: [PATCH] lilypond-0.1.53 --- lib/GNUmakefile | 54 +++++++++++++++++++++++++++++++++++++++ lib/include/GNUmakefile | 43 +++++++++++++++++++++++++++++++ lily/include/GNUmakefile | 42 ++++++++++++++++++++++++++++++ mf/GNUmakefile | 46 +++++++++++++++++++++++++++++++++ mi2mu/GNUmakefile | 40 ++++++++++++++++++++++++----- mi2mu/include/GNUmakefile | 42 ++++++++++++++++++++++++++++++ 6 files changed, 260 insertions(+), 7 deletions(-) create mode 100644 lib/GNUmakefile create mode 100644 lib/include/GNUmakefile create mode 100644 lily/include/GNUmakefile create mode 100644 mf/GNUmakefile create mode 100644 mi2mu/include/GNUmakefile diff --git a/lib/GNUmakefile b/lib/GNUmakefile new file mode 100644 index 0000000000..18b8c08925 --- /dev/null +++ b/lib/GNUmakefile @@ -0,0 +1,54 @@ +# lib/GNUmakefile +# +# This file helps maintainers to keep their Makefile.am automatically +# up to date using GNU make features. +# If you don't have (or run) GNU make, Makefile.am will not be updated +# automatically when source files are added/removed. + +# automake/wild-make should generate this file from Makefile.am.wild + +#ugh +Makefile=$(wildcard Makefile) +# are we configured here, or are we using --srcdir +ifeq ($(Makefile),Makefile) + +include Makefile + +biltdir=. + +else + +#ugh +biltdir=../../build/lib + +make-in-build: wild-check + exec $(MAKE) -C $(biltdir) + +# include Makefile +include $(biltdir)/Makefile + +clean: wild-check + exec $(MAKE) -C $(biltdir) $@ + +dist: wild-check + exec $(MAKE) -C $(biltdir) $@ + +distclean: wild-check + exec $(MAKE) -C $(biltdir) $@ + +endif + +# Makefile.am.wild: liblily_la_SOURCES = $(wildcard *.cc) +CURRENT_liblily_la_SOURCES = $(wildcard *.cc) + +wild-check: check-lily-la-sources + +check-lily-la-sources: +ifneq ($(liblily_la_SOURCES),$(CURRENT_libflower_la_SOURCES)) + @echo \"$(liblily_la_SOURCES)\" + @echo \"$(CURRENT_liblily_la_SOURCES)\" + @echo liblily_la_SOURCES changed: rerunning make-wild. + @-rm -f Makefile.am + $(PERL) $(top_srcdir)/bin/wild-perl < Makefile.am.wild > Makefile.am +endif + diff --git a/lib/include/GNUmakefile b/lib/include/GNUmakefile new file mode 100644 index 0000000000..59fa4cedaa --- /dev/null +++ b/lib/include/GNUmakefile @@ -0,0 +1,43 @@ +# lib/include/GNUmakefile +# +# This file helps maintainers to keep their Makefile.am automatically +# up to date using GNU make features. +# If you don't have (or run) GNU make, Makefile.am will not be updated +# automatically when source files are added/removed. + +# automake/wild-make should generate this file from Makefile.am.wild + +#ugh +Makefile=$(wildcard Makefile) +# are we configured here, or are we using --srcdir +ifeq ($(Makefile),Makefile) + +include Makefile + +biltdir=. + +else + +#ugh +biltdir=../../../build/lib/include + +# include Makefile +include $(biltdir)/Makefile + +endif + +# Makefile.am.wild: noinst_HEADERS = $(wildcard *.hh *.icc *.tcc) +# CURRENT_noinst_HEADERS = $(wildcard *.hh *.icc *.tcc) +CURRENT_noinst_HEADERS = $(wildcard *.hh) + +wild-check: check-noinst-headers + +check-noinst-headers: +ifneq ($(noinst_HEADERS),$(CURRENT_noinst_HEADERS)) + @echo \"$(noinst_HEADERS)\" + @echo \"$(CURRENT_noinst_HEADERS)\" + @echo noinst_HEADERS changed: rerunning make-wild. + @-rm -f Makefile.am + $(PERL) $(top_srcdir)/bin/wild-perl < Makefile.am.wild > Makefile.am +endif + diff --git a/lily/include/GNUmakefile b/lily/include/GNUmakefile new file mode 100644 index 0000000000..bee7c9c5bc --- /dev/null +++ b/lily/include/GNUmakefile @@ -0,0 +1,42 @@ +# lily/include/GNUmakefile +# +# This file helps maintainers to keep their Makefile.am automatically +# up to date using GNU make features. +# If you don't have (or run) GNU make, Makefile.am will not be updated +# automatically when source files are added/removed. + +# automake/wild-make should generate this file from Makefile.am.wild + +#ugh +Makefile=$(wildcard Makefile) +# are we configured here, or are we using --srcdir +ifeq ($(Makefile),Makefile) + +include Makefile + +biltdir=. + +else + +biltdir=../../../build/lily/include + +# include Makefile +include $(biltdir)/Makefile + +endif + +# Makefile.am.wild: noinst_HEADERS = $(wildcard *.hh *.icc *.tcc) +CURRENT_noinst_HEADERS = $(wildcard *.hh *.icc *.tcc) + +wild-check: check-noinst-headers + + +check-noinst-headers: +ifneq ($(noinst_HEADERS),$(CURRENT_noinst_HEADERS)) + @echo \"$(noinst_HEADERS)\" + @echo \"$(CURRENT_noinst_HEADERS)\" + @echo noinst_HEADERS changed: rerunning make-wild. + @-rm -f Makefile.am + $(PERL) $(top_srcdir)/bin/wild-perl < Makefile.am.wild > Makefile.am +endif + diff --git a/mf/GNUmakefile b/mf/GNUmakefile new file mode 100644 index 0000000000..00e7046028 --- /dev/null +++ b/mf/GNUmakefile @@ -0,0 +1,46 @@ +# mf/GNUmakefile +# +# This file helps maintainers to keep their Makefile.am automatically +# up to date using GNU make features. +# If you don't have (or run) GNU make, Makefile.am will not be updated +# automatically when source files are added/removed. + +# automake/wild-make should generate this file from Makefile.am.wild + +#ugh +Makefile=$(wildcard Makefile) +# are we configured here, or are we using --srcdir +ifeq ($(Makefile),Makefile) + +include Makefile + +biltdir=. + +else + +#ugh +#ugh +biltdir=../../build/mf + +make-in-build: wild-check + exec $(MAKE) -C $(biltdir) + +# include Makefile +include $(biltdir)/Makefile + +clean: wild-check + exec $(MAKE) -C $(biltdir) $@ + +dist: wild-check + exec $(MAKE) -C $(biltdir) $@ + +distclean: wild-check + exec $(MAKE) -C $(biltdir) $@ + +endif + +# Makefile.am.wild: mi2mu_SOURCES = $(wildcard *.cc) +# CURRENT_mi2mu_SOURCES = $(wildcard *.cc) + +wild-check: + diff --git a/mi2mu/GNUmakefile b/mi2mu/GNUmakefile index de251bbe42..8e21cc5b4a 100644 --- a/mi2mu/GNUmakefile +++ b/mi2mu/GNUmakefile @@ -7,23 +7,49 @@ # automake/wild-make should generate this file from Makefile.am.wild +#ugh +Makefile=$(wildcard Makefile) +# are we configured here, or are we using --srcdir +ifeq ($(Makefile),Makefile) + include Makefile +biltdir=. + +else + +#ugh +#ugh +biltdir=../../build/mi2mu + +make-in-build: wild-check + exec $(MAKE) -C $(biltdir) + +# include Makefile +include $(biltdir)/Makefile + +clean: wild-check + exec $(MAKE) -C $(biltdir) $@ + +dist: wild-check + exec $(MAKE) -C $(biltdir) $@ + +distclean: wild-check + exec $(MAKE) -C $(biltdir) $@ + +endif + # Makefile.am.wild: mi2mu_SOURCES = $(wildcard *.cc) CURRENT_mi2mu_SOURCES = $(wildcard *.cc) -# ugh: there is a dummy file 'wild-check' to satisfy the wild-check target -# for non-GNU makes in Makefile(.test) -# but we'll ignore that -# .PHONY: wild-check - wild-check: check-mi2mu-sources check-mi2mu-sources: ifneq ($(mi2mu_SOURCES),$(CURRENT_mi2mu_SOURCES)) @echo \"$(mi2mu_SOURCES)\" @echo \"$(CURRENT_mi2mu_SOURCES)\" - @echo mi2mu_SOURCES changed: NOT yet rerunning make-wild. Please type: - @echo "$(PERL) $(top_srcdir)/bin/wild-perl < Makefile.am.wild > Makefile.am" + @echo mi2mu_SOURCES changed: rerunning make-wild. + @-rm -f Makefile.am + $(PERL) $(top_srcdir)/bin/wild-perl < Makefile.am.wild > Makefile.am endif diff --git a/mi2mu/include/GNUmakefile b/mi2mu/include/GNUmakefile new file mode 100644 index 0000000000..a3f707a0e3 --- /dev/null +++ b/mi2mu/include/GNUmakefile @@ -0,0 +1,42 @@ +# mi2mu/include/GNUmakefile +# +# This file helps maintainers to keep their Makefile.am automatically +# up to date using GNU make features. +# If you don't have (or run) GNU make, Makefile.am will not be updated +# automatically when source files are added/removed. + +# automake/wild-make should generate this file from Makefile.am.wild + +#ugh +Makefile=$(wildcard Makefile) +# are we configured here, or are we using --srcdir +ifeq ($(Makefile),Makefile) + +include Makefile + +biltdir=. + +else + +#ugh +biltdir=../../../build/mi2mu/include + +# include Makefile +include $(biltdir)/Makefile + +endif + +# Makefile.am.wild: noinst_HEADERS = $(wildcard *.hh *.icc *.tcc) +CURRENT_noinst_HEADERS = $(wildcard *.hh *.icc *.tcc) + +wild-check: check-noinst-headers + +check-noinst-headers: +ifneq ($(noinst_HEADERS),$(CURRENT_noinst_HEADERS)) + @echo \"$(noinst_HEADERS)\" + @echo \"$(CURRENT_noinst_HEADERS)\" + @echo noinst_HEADERS changed: rerunning make-wild. + @-rm -f Makefile.am + $(PERL) $(top_srcdir)/bin/wild-perl < Makefile.am.wild > Makefile.am +endif + -- 2.39.5