# What soundfont to use to generate the MIDI file SOUNDFONT = $(HOME)/soundfonts/FluidR3GM.sf2 # Determine how many processors are present CPU_CORES=`grep -m1 "cpu cores" /proc/cpuinfo | tr -cd '[:digit:]'` # The command to run lilypond LILY_CMD = LILYPOND_USE_CHORDS=$(LILYPOND_USE_CHORDS) lilypond -dinclude-settings=settings.ly -ddelete-intermediate-files -drelative-includes -djob-count=$(CPU_CORES) SUBDIRS := 01-song1 02-song2 03-circus 04-white-noise all: $(SUBDIRS) guide: guide.wav guide.wav: $(addsuffix /guide.wav,$(SUBDIRS)) sox --combine concatenate $(sort $^) $@ clean: - rm guide.wav $(wildcard */guide.wav) $(wildcard $(addsuffix /*.wav,$(SUBDIRS))) - rm $(wildcard */*.ogg) NAME := 01-song1 include rules.mk NAME := 02-song2 include rules.mk NAME := 03-circus include rules.mk NAME := 04-white-noise include rules.mk upload-guide: guide.wav scp guide.wav elephly.net:~/elephly.net/secret/band/guide.wav .PHONY: $(SUBDIRS) clean