--- /dev/null
+# init/Makefile
+
+
+# subdir level:
+#
+depth = ..
+#
+
+# generic stuff/Makefile
+#
+include ./$(depth)/make/Include.make
+
+# list of distribution files:
+#
+INIFILES = $(wildcard *.ly)
+DISTFILES = Makefile $(INIFILES)
+
+## we probably can make tex/*defs.tex and init/*.ly in one go...
+## moved to mf/Makefile
+FONT_FILES = $(wildcard $(depth)/mf/*[0-9].mf)
+TABLES = $(patsubst $(depth)/mf/%.mf,%.ly,$(FONT_FILES))
+
+
+localclean:
+ rm -f $(TABLES)
+
+
+INSTALLATION_DIR=$(datadir)/lilypond/
+INSTALLATION_FILES=$(INIFILES)
+
+include $(depth)/make/Installfiles.make
+
--- /dev/null
+
+
+
+localinstall: localinstall-files
+
+localinstall-files:
+ $(INSTALL) -d $(INSTALLATION_DIR)
+ $(INSTALL) -m 644 $(INSTALLATION_FILES) $(INSTALLATION_DIR)
+
+localuninstall: localuninstall-files
+
+localuninstall-files:
+ for i in $(INSTALLATION_FILES) ; do \
+ rm -f $(INSTALLATION_DIR)/$$i; \
+ done
+ -rmdir $(INSTALLATION_DIR)
--- /dev/null
+# tex/Makefile
+
+# subdir level:
+#
+depth = ..
+#
+#
+include ./$(depth)/make/Include.make
+#
+
+# list of distribution files:
+#
+TEXFILES = $(wildcard *.tex)
+DISTFILES = Makefile $(TEXFILES)
+#
+
+INSTALLATION_DIR=$(TEXDIR)/lilypond
+INSTALLATION_FILES=$(TEXFILES)
+
+include $(depth)/make/Installfiles.make