]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.1.57
authorfred <fred>
Sun, 24 Mar 2002 20:08:44 +0000 (20:08 +0000)
committerfred <fred>
Sun, 24 Mar 2002 20:08:44 +0000 (20:08 +0000)
flower/Makefile [new file with mode: 0644]
make/Toplevel_version.make [new file with mode: 0644]

diff --git a/flower/Makefile b/flower/Makefile
new file mode 100644 (file)
index 0000000..914663f
--- /dev/null
@@ -0,0 +1,84 @@
+#
+# project  FlowerSoft C++ library
+# title           top level makefile for FlowerLib
+# file    flower/Makefile
+#
+# Copyright (c) 1997 by    
+#      Jan Nieuwenhuizen <jan@digicash.com>
+#      Han-Wen Nienhuys <hanwen@stack.nl>
+#              ...your sort order here, or how to comment-out a comment
+
+# subdir level:
+#
+depth = ..
+#
+
+# identify module:
+#
+NAME = flower
+MODULE_NAME = flower
+#
+# edit VERSION only
+include ./$(depth)/VERSION
+include ./$(depth)/flower/VERSION
+
+# generic variables:
+#
+include ./$(depth)/make/Variables.make
+include ./$(depth)/make/Files.make 
+
+#include $(flowerout)/Flower-flags.make
+
+
+#
+# descent order into subdirectories:
+#
+SUBDIRS = include 
+#
+
+# list of distribution files:
+#
+SCRIPTS = 
+README_FILES = ONEWS NEWS README TODO
+EXTRA_DISTFILES= VERSION $(README_FILES) $(SCRIPTS)
+#Flower-flags.make.in
+# aclocal.m4 configure config.hh.in configure.in
+
+
+
+
+# generic targets and rules:
+#
+include ./$(depth)/make/Targets.make
+include ./$(depth)/make/Rules.make
+#
+
+default: the-lib
+
+THE_LIB=$(outdir)/$(LIB_PREFIX)flower$(LIB_SUFFIX)
+the-lib: $(THE_LIB) 
+
+# version:
+#
+
+localdist: 
+
+-include /dev/null $(DEPFILES)
+#
+
+localdistclean:
+       rm -f config.cache config.status config.log
+
+localinstall: $(LIBFLOWER)
+ifeq ($(LIB_SUFFIX),.so)
+       $(INSTALL) -d $(libdir)
+       $(INSTALL) $(LIBFLOWER).$(VERSION) $(libdir)
+       ln -s $(LIB_PREFIX)flower$(LIB_SUFFIX).$(VERSION) $(libdir)/$(LIB_PREFIX)flower$(LIB_SUFFIX).$(MAJOR_VERSION)
+       ln -s $(LIB_PREFIX)flower$(LIB_SUFFIX).$(VERSION) $(libdir)/$(LIB_PREFIX)flower$(LIB_SUFFIX)
+endif
+
+localuninstall:
+       rm -f $(libdir)/libflower.{so*,a}
+
+
+$(outdir)/flower-version.o: $(outdir)/version.hh
diff --git a/make/Toplevel_version.make b/make/Toplevel_version.make
new file mode 100644 (file)
index 0000000..4e3ffb6
--- /dev/null
@@ -0,0 +1,7 @@
+
+include $(depth)/VERSION
+TOPLEVEL_MAJOR_VERSION :=$(MAJOR_VERSION)
+TOPLEVEL_MINOR_VERSION:=$(MINOR_VERSION)
+TOPLEVEL_PATCH_LEVEL:=$(PATCH_LEVEL)
+# use to send patches, always empty for released version:
+TOPLEVEL_MY_PATCH_LEVEL:=$(MY_PATCH_LEVEL)