1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# UGH UGH
include $(make-dir)/lilypond-vars.make
# LY_FILES is defined the LY make template.
SCORE_LY_FILES = $(shell cd $(src-dir) && fgrep -l score *.ly)
ILY_FILES = $(call src-wildcard,*.ily)
ly_examples=$(addprefix $(outdir)/, $(addsuffix .ly, $(examples)))
ly_examples+= $(ILY_FILES:%.ily=$(outdir)/%.ily)
all_examples=$(examples)
ps_examples=$(addprefix $(outdir)/, $(addsuffix .ps.gz, $(all_examples)))
pdf_examples=$(addprefix $(outdir)/, $(addsuffix .pdf, $(all_examples)))
gif_examples=$(addprefix $(outdir)/, $(addsuffix .gif, $(all_examples)))
png_examples=$(addprefix $(outdir)/, $(addsuffix .png, $(all_examples)))
html_subdirs=$(addprefix --subdirs ,$(SUBDIRS))
name-stem= $(notdir $(basename $<))
score_ps = $(addprefix $(outdir)/, $(addsuffix .ps.gz, $(SCORE_LY_FILES)))
|