1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2024-09-28 12:44:42 +02:00
pipeband-music/template/Makefile

28 lines
522 B
Makefile
Raw Normal View History

2022-10-12 02:27:47 +02:00
# determine how many processors are present
CPU_CORES :=`cat /proc/cpuinfo | grep -m1 "cpu cores" | sed s/".*: "//`
# The command to run lilypond
LILYPOND := ../build
LILYFLAGS := -djob-count=$(CPU_CORES) -dno-preview
# Suffixes used in this Makefile
.SUFFIXES:
.SUFFIXES: .ly .pdf
SOURCES := $(wildcard ./*.ly)
OUTPUTS = $(patsubst %.ly,%.pdf,$(SOURCES))
.PHONY: all dist distclean clean
all: dist
clean:
rm -vf *.midi
dist: $(OUTPUTS)
distclean: clean
rm -f $(OUTPUTS)
%.pdf: %.ly
$(LILYPOND) $(LILYFLAGS) $<