summaryrefslogtreecommitdiff
path: root/Nun_bitten_wir_den_Heiligen_Geist/Makefile
blob: 5906da7f5bad07e6c7dcba4cb560f06955437f36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
CURDOC=$(shell basename "$(CURDIR)")

all: $(CURDOC).pdf
	pkill -SIGHUP -xf 'mupdf(-x11)? (.*/)?$<' || true

clean:
	rm -f *.pre

Clean: clean
	rm -f *.pdf *.midi

include ../.meta/*.mk

%.pre: %.ly
	cat "$<" > "$@"

%.post: %.pre $(patsubst %.ly,%.pre, $(shell ls *.ly))
	m4 <"$<" >"$@"

%.pdf: %.post
	lilypond $<
	pkill -SIGHUP -xf "mupdf(-x11)? $@" || true