From: fred Date: Sun, 24 Mar 2002 20:08:46 +0000 (+0000) Subject: lilypond-0.1.57 X-Git-Tag: release/1.5.59~3262 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c34b0c9b22de07afc06be13bdeb2e3ad0d0154de;p=lilypond.git lilypond-0.1.57 --- diff --git a/init/Makefile b/init/Makefile new file mode 100644 index 0000000000..1422d5d2aa --- /dev/null +++ b/init/Makefile @@ -0,0 +1,32 @@ +# 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 + diff --git a/make/Installfiles.make b/make/Installfiles.make new file mode 100644 index 0000000000..52ee9919be --- /dev/null +++ b/make/Installfiles.make @@ -0,0 +1,16 @@ + + + +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) diff --git a/tex/Makefile b/tex/Makefile new file mode 100644 index 0000000000..9a7713e43d --- /dev/null +++ b/tex/Makefile @@ -0,0 +1,20 @@ +# 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