blob: 4a6b81dab67a9ac22cdb937bfcd8c5db0a66e0f9 (
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 find . -name '*.ly'))
m4 <"$<" >"$@"
%.pdf: %.post
lilypond $<
pkill -SIGHUP -xf "mupdf(-x11)? $@" || true
|