diff options
author | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2024-07-19 12:22:24 +0200 |
---|---|---|
committer | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2024-07-19 12:22:24 +0200 |
commit | f3c703a107ca69d402e10397a0294155f03ba51a (patch) | |
tree | 22615454b27120e207ffb4e01adf855a2eb4b246 /bierlobx | |
parent | 445d130619394d6cadbbf900103d1e004cd3d250 (diff) | |
download | Musik-f3c703a107ca69d402e10397a0294155f03ba51a.tar.xz |
bierlobx neu
Diffstat (limited to 'bierlobx')
-rw-r--r-- | bierlobx/Makefile | 36 | ||||
-rw-r--r-- | bierlobx/bierlobx.ly | 36 |
2 files changed, 72 insertions, 0 deletions
diff --git a/bierlobx/Makefile b/bierlobx/Makefile new file mode 100644 index 0000000..93067fb --- /dev/null +++ b/bierlobx/Makefile @@ -0,0 +1,36 @@ +CURDOC=$(shell basename "$(CURDIR)") + +DIRS=../Geh_aus_mein_Herz ../In_dieser_lieben_Sommerzeit + +EXTRAS=-mit-Texthinweisen + +all: $(CURDOC)$(EXTRAS).pdf + +print: + @echo $(CURDOC)$(EXTRAS).pdf + +clean: + rm -f *.pre *.post + +Clean: clean + rm -f *.pdf *.midi + +include ../.meta/*.mk + +%.pre: %.ly + cat "$<" > "$@" + +Geh_aus_mein_Herz_%.pre: ../Geh_aus_mein_Herz/%.ly + cat "$<" > "$@" + +In_dieser_lieben_Sommerzeit_%.pre: ../In_dieser_lieben_Sommerzeit/%.ly + cat "$<" > "$@" + +%.post: %.pre $(patsubst %.ly,%.pre,$(shell find $(DIRS) -name '*.ly' | cut -d/ -f2,3 | tr '/' '_')) ../.meta/header.ly + cat ../.meta/header.ly "$<" \ + |m4 \ + >"$@" + +%.pdf: %.post + lilypond $< + pkill -SIGHUP -xf "mupdf(-x11)? $@" || true diff --git a/bierlobx/bierlobx.ly b/bierlobx/bierlobx.ly new file mode 100644 index 0000000..97978f4 --- /dev/null +++ b/bierlobx/bierlobx.ly @@ -0,0 +1,36 @@ +\version "2.24.3" +% automatically converted by musicxml2ly from bierlobx.musicxml +\pointAndClickOff + +\header { + encodingsoftware = "MuseScore 4.3.2" + encodingdate = "2024-07-19" + } + +#(set-global-staff-size 19.997457142857144) +\paper { + + paper-width = 21.01\cm + paper-height = 29.69\cm + top-margin = 1.5\cm + bottom-margin = 1.5\cm + left-margin = 1.5\cm + right-margin = 1.5\cm + } +\layout { + \context { \Score + autoBeaming = ##f + } + } + +% The score definition +\score { + << + + + >> + \layout {} + % To create MIDI output, uncomment the following line: + % \midi {\tempo 4 = 100 } + } + |