.POSIX: .SUFFIXES: .SUFFIXES: .ly .flac .midi .ogg .pdf .ly.midi: lilypond -o $* $< .midi.ogg: timidity -Ov $< .flac.ogg: ffmpeg -y -i $< -ar 48000 -vn -c:a libvorbis -b:a 320k $@ lilypond.ly = \ music/choro-da-saudade.ly \ music/dengoso.ly \ music/marcha-dos-marinheiros.ly lilypond.pdf = $(lilypond.ly:.ly=.pdf) lilypond.midi = $(lilypond.ly:.ly=.midi) lilypond.ogg = $(lilypond.midi:.midi=.ogg) lilypond = \ $(lilypond.pdf) \ $(lilypond.midi) \ $(lilypond.ogg) favicons = static/favicon.png favicon.ico podcasts.flac = \ resources/podcasts/2020-12-19-a-test-entry.flac podcasts.ogg = $(podcasts.flac:.flac=.ogg) screencasts.webm = \ resources/screencasts/2021-02-07-autoqemu-automate-installation-and-ssh-setup-of-iso-os-images.webm torrents-in = \ $(podcasts.flac) \ $(podcasts.ogg) \ $(screencasts.webm) torrents = $(torrents-in:=.torrent) derived-assets = \ $(lilypond) \ $(favicons) \ $(podcasts.ogg) \ $(torrents) all: public jekyll-deps: $(derived-assets) $(lilypond.pdf): $(lilypond.midi) torrents-files.txt: $(torrents-in) echo $(torrents-in) | tr ' ' '\n' > $@ torrent-files.mk: torrents-files.txt printf 'torrent-files = \\\n' > $@ sed -e 's/^/\t/' -e 's/$$/.torrent \\/' < torrents-files.txt >> $@ printf '\n\n' >> $@ awk '{ printf "%s.torrent: %s\n", $$1, $$1 }' torrents-files.txt >> $@ $(torrents): torrent-files.mk $(MAKE) -f Makefile.dynamic torrents static/favicon.png: static/favicon.svg inkscape -o $@ -w 2048 -h 2048 -b white static/favicon.svg favicon.ico: static/favicon.svg convert static/favicon.svg $@ check: sh aux/assert-shellcheck.sh sh aux/workflow/assert-todos.sh sh scripts/assert-spelling.sh sh scripts/extract-translations.sh sh scripts/apply-translations.sh dev-check: check clean: rm -rf \ public/ \ $(derived-assets) \ torrents-files.txt torrent-files.mk public: jekyll-deps jekyll build publish: public rsync -avzP public/ euandre.org:/home/user-data/www/default/ --delete