]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.1.53
authorfred <fred>
Sun, 24 Mar 2002 20:09:00 +0000 (20:09 +0000)
committerfred <fred>
Sun, 24 Mar 2002 20:09:00 +0000 (20:09 +0000)
lib/GNUmakefile [new file with mode: 0644]
lib/include/GNUmakefile [new file with mode: 0644]
lily/include/GNUmakefile [new file with mode: 0644]
mf/GNUmakefile [new file with mode: 0644]
mi2mu/GNUmakefile
mi2mu/include/GNUmakefile [new file with mode: 0644]

diff --git a/lib/GNUmakefile b/lib/GNUmakefile
new file mode 100644 (file)
index 0000000..18b8c08
--- /dev/null
@@ -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 (file)
index 0000000..59fa4ce
--- /dev/null
@@ -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 (file)
index 0000000..bee7c9c
--- /dev/null
@@ -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 (file)
index 0000000..00e7046
--- /dev/null
@@ -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: 
+
index de251bbe42b5aa0fdcff2e08f3669c8bd7142070..8e21cc5b4a6e60ddd6091871a5ccc0802ac192b9 100644 (file)
@@ -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 (file)
index 0000000..a3f707a
--- /dev/null
@@ -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
+