From 94a7f68b3c6727fa1fe1e4f78e84c5cdb7c40644 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Wed, 1 Jun 2022 22:20:09 -0300 Subject: Generate podcast artifacts in dynamic.mk --- Makefile | 6 ------ dynamic.mk | 17 +++++++++++++---- src/development/dynmake.sh | 13 +++++++++++++ 3 files changed, 26 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 7f9c93b..3646525 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,6 @@ .POSIX: FQDN = euandre.org -.SUFFIXES: -.SUFFIXES: .flac .ogg - -.flac.ogg: - ffmpeg -y -i $< -ar 48000 -vn -c:a libvorbis -b:a 320k $@ - favicons = static/lord-favicon.png static/lord-favicon.ico favicon.ico diff --git a/dynamic.mk b/dynamic.mk index 7510067..9bb1632 100644 --- a/dynamic.mk +++ b/dynamic.mk @@ -1,7 +1,8 @@ .POSIX: + .SUFFIXES: -.SUFFIXES: .md .env .html .ly .flac .midi .ogg .pdf +.SUFFIXES: .md .env .html .ly .flac .midi .ogg .pdf .flac .md.env: sh src/development/frontmatter-env.sh < $< > $@ @@ -15,6 +16,9 @@ .midi.ogg: timidity -Ov $< +.flac.ogg: + ffmpeg -y -i $< -ar 48000 -vn -c:a libvorbis -b:a 320k $@ + include generated.mk @@ -28,10 +32,15 @@ lilypond.midi = $(lilypond.ly:.ly=.midi) lilypond.ogg = $(lilypond.ly:.ly=.ogg) lilypond = $(lilypond.pdf) $(lilypond.midi) $(lilypond.ogg) +podcasts.ogg = $(podcasts.flac:.flac=.ogg) +podcasts = $(podcasts.ogg) + ALL = \ - $(pastebins) \ - $(lilypond) \ - $(torrent-files) + $(pastebins) \ + $(lilypond) \ + $(torrent-files) \ + $(podcasts) + all: $(ALL) $(torrent-files): diff --git a/src/development/dynmake.sh b/src/development/dynmake.sh index 8372d52..4098f46 100755 --- a/src/development/dynmake.sh +++ b/src/development/dynmake.sh @@ -107,3 +107,16 @@ lilyponds | varlist printf '\n' lilyponds | sed 's/^\(.*\)\.ly$/\1.pdf: \1.midi/' + + +# +# Podcasts +# + +podcasts() { + find resources/podcasts/ -name '*.flac' +} + +printf 'podcasts.flac = \\\n' +podcasts | varlist +printf '\n' -- cgit v1.2.3