summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@gmail.com>2020-12-14 00:17:59 +0100
committerKévin Le Gouguec <kevin.legouguec@gmail.com>2020-12-14 00:17:59 +0100
commit4ffcefe6afb58590754dc1f95da9452e9666376a (patch)
tree68dce601d7285f6c745944def7407c51483754f2
parent55368ba1929a9174daf31f2a99ab2183404ba664 (diff)
downloadquatuorbellefeuille.com-4ffcefe6afb58590754dc1f95da9452e9666376a.tar.xz
Fix absent calendar icon
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index abf07a9..55f072b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,8 @@
pages = $(wildcard *.html)
sheets = $(wildcard *.css)
-targets = $(foreach f,$(pages) $(sheets),public/$(f))
+images = $(wildcard *.svg)
+resources = $(pages) $(sheets) $(images)
+targets = $(foreach f,$(resources),public/$(f))
.PHONY: all clean site