From d58036f7080008b3422b77227a4541572984ecf9 Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 19:35:22 +0000 Subject: [PATCH] lilypond-0.0.43 --- lib/Makefile | 27 ++++----------------------- make/Version.make | 7 +++++++ mi2mu/Makefile | 22 +++++----------------- 3 files changed, 16 insertions(+), 40 deletions(-) create mode 100644 make/Version.make diff --git a/lib/Makefile b/lib/Makefile index 8676c37760..497b93d8a8 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -16,17 +16,13 @@ depth = .. # generic variables: # include ./$(depth)/make/Variables.make +include ./$(depth)/make/Files.make +include ./$(depth)/make/Version.make # # identify module: # NAME = lily -MAJOR_VERSION = $(TOPLEVEL_MAJOR_VERSION) -MINOR_VERSION = $(TOPLEVEL_MINOR_VERSION) -PATCH_LEVEL = $(TOPLEVEL_PATCH_LEVEL) -# use to send patches, always empty for released version: -MY_PATCH_LEVEL = $(TOPLEVEL_MY_PATCH_LEVEL) -build = $(lily-dir)/$(outdir)/.build # # descent order into subdirectories: @@ -39,24 +35,9 @@ SUBDIRS = include VERSION_DEPENDENCY =# # -# list of c++ header files: -# -HHFILES = $(shell ls *.hh $(ERROR_LOG)) -# - -# list of c++ source files: -# -CCFILES = $(shell ls *.cc $(ERROR_LOG)) -# - -# list of other source files: -# -EXTRA_SOURCE_FILES = # $(shell ls *.y *.l $(ERROR_LOG)) -# - # list of distribution files: # -DISTFILES = Makefile $(HHFILES) $(CCFILES) $(EXTRA_SOURCE_FILES) +DISTFILES = Makefile $(ALL_SOURCES) # # list of custom libraries: @@ -86,7 +67,7 @@ include ./$(depth)/make/Rules.make # list of depend files: # -DEPFILES = $(shell ls $(depdir)/*.dep $(ERROR_LOG)) + # # auto dependencies: diff --git a/make/Version.make b/make/Version.make new file mode 100644 index 0000000000..9ee357173b --- /dev/null +++ b/make/Version.make @@ -0,0 +1,7 @@ + +MAJOR_VERSION = $(TOPLEVEL_MAJOR_VERSION) +MINOR_VERSION = $(TOPLEVEL_MINOR_VERSION) +PATCH_LEVEL = $(TOPLEVEL_PATCH_LEVEL) +# use to send patches, always empty for released version: +MY_PATCH_LEVEL = $(TOPLEVEL_MY_PATCH_LEVEL) +build = $(outdir)/.build diff --git a/mi2mu/Makefile b/mi2mu/Makefile index 10a7f1ef53..235504e660 100644 --- a/mi2mu/Makefile +++ b/mi2mu/Makefile @@ -15,7 +15,8 @@ depth = .. # generic variables: # -include ./$(depth)/make/Variables.make +include ./$(depth)/make/Variables.make +include ./$(depth)/make/Files.make # # identify module: @@ -36,24 +37,11 @@ SUBDIRS = include VERSION_DEPENDENCY = $(mi2mu-version) # -# list of c++ header files: -# -HHFILES := $(wildcard *.hh ) -# - -# list of c++ source files: -# -CCFILES := $(wildcard *.cc ) -# - -# list of other source files: -# -EXTRA_SOURCE_FILES := $(wildcard *.y *.l ) -# # list of distribution files: # -DISTFILES = Makefile .version $(HHFILES) $(CCFILES) $(EXTRA_SOURCE_FILES) +DISTFILES = Makefile .version $(ALL_SOURCES) + # # list of custom libraries: @@ -87,7 +75,7 @@ midi-lexer.l: $(outdir)/midi-parser.hh # list of depend files: # -DEPFILES = $(shell ls $(depdir)/*.dep $(ERROR_LOG)) +DEPFILES = $(wildcard $(depdir)/*.dep) # # auto dependencies: -- 2.39.5