diff options
author | EuAndreh <eu@euandre.org> | 2022-06-01 23:15:50 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-06-01 23:15:55 -0300 |
commit | 91e5a7e578cfc5cf373bea836bdcf5c865c4c4cd (patch) | |
tree | 83e85400c51433c0f3bed50fc33310721499bf28 | |
parent | Makefile: Disable current tests (diff) | |
download | euandre.org-91e5a7e578cfc5cf373bea836bdcf5c865c4c4cd.tar.gz euandre.org-91e5a7e578cfc5cf373bea836bdcf5c865c4c4cd.tar.xz |
dynamic.mk: Re-generate HTML files when genhtml.sh changes
-rw-r--r-- | dynamic.mk | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -28,6 +28,8 @@ pastebins.env = $(pastebins.md:.md=.env) pastebins.html = $(pastebins.md:.md=.html) pastebins = $(pastebins.env) $(pastebins.html) +html = $(pastebins.html) + lilypond.pdf = $(lilypond.ly:.ly=.pdf) lilypond.midi = $(lilypond.ly:.ly=.midi) lilypond.ogg = $(lilypond.ly:.ly=.ogg) @@ -37,11 +39,13 @@ podcasts.ogg = $(podcasts.flac:.flac=.ogg) podcasts = $(podcasts.ogg) ALL = \ - $(pastebins) \ + $(html) \ $(lilypond) \ $(torrent-files) \ $(podcasts) +$(html): src/development/genhtml.sh + all: $(ALL) $(torrent-files): |