summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@gmail.com>2020-12-16 00:38:37 +0100
committerKévin Le Gouguec <kevin.legouguec@gmail.com>2020-12-16 00:39:38 +0100
commit6d2295bff6cf4847a0d0ec6baae5a6cee7543274 (patch)
tree52637c113274b07ab6252fc67b116b961aae5e36
parent723b015d1eb1ccc7f53b2bd866c52eb014a71575 (diff)
downloadquatuorbellefeuille.com-6d2295bff6cf4847a0d0ec6baae5a6cee7543274.tar.xz
Add RSS feed
Duuuh.
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 55f072b..08319dc 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,8 @@
pages = $(wildcard *.html)
sheets = $(wildcard *.css)
images = $(wildcard *.svg)
-resources = $(pages) $(sheets) $(images)
+feeds = $(wildcard *.xml)
+resources = $(pages) $(sheets) $(images) $(feeds)
targets = $(foreach f,$(resources),public/$(f))
.PHONY: all clean site