diff options
author | Alan Pearce | 2023-09-17 17:30:41 +0200 |
---|---|---|
committer | Alan Pearce | 2023-09-17 17:30:41 +0200 |
commit | 1a7abb3723d6b9db0d199c26d2a207e03636738a (patch) | |
tree | 78e670f67967e846ce7d31075330db8e7c078be2 /Makefile | |
parent | 47d12511b81636e71ab365622e6866d233aae715 (diff) | |
download | website-1a7abb3723d6b9db0d199c26d2a207e03636738a.tar.lz website-1a7abb3723d6b9db0d199c26d2a207e03636738a.tar.zst website-1a7abb3723d6b9db0d199c26d2a207e03636738a.zip |
Fix incorrect Makefile logic for post-processing
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile index 1911f35..288985d 100644 --- a/Makefile +++ b/Makefile @@ -7,12 +7,14 @@ gzip := @gzip --best --keep --force zstd := @zstd --force --no-pass-through -19 --quiet --stdout pr := @printf "%4s %s\n" -public/feed-styles.xsl: public/index.html +public/feed-styles.xsl: @mv public/feed-styles/index.html $@ @rm -fr public/feed-styles -postprocess: public/feed-styles.xsl - touch .postprocessstamp +postprocess: .postprocessstamp + +.postprocessstamp: public/feed-styles.xsl + @touch .postprocessstamp format: .formatstamp |