Makefile for ./template

This commit is contained in:
Eric Teunis de Boone 2022-10-12 02:27:47 +02:00
parent 281446d41d
commit 1429966189
1 changed files with 27 additions and 0 deletions

27
template/Makefile Normal file
View File

@ -0,0 +1,27 @@
# 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) $<