diff --git a/Makefile b/Makefile index fa15a60..ce81468 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,6 @@ PAGES := index.html 404.html info.html -SHARED_FILES := stallman.webp stallman_2024.webp favicon.ico poster.webp \ +SHARED_FILES := stallman.webp stallman_2024.webp favicon.ico \ + poster_cz.webp poster_en.webp poster_cz.jpg poster_en.jpg \ moon.svg sun.svg narrow_light.svg narrow_dark.svg wide_light.svg wide_dark.svg lang_cz.svg lang_en.svg \ styles.css icons.css \ countdown.js theme.js lang.js @@ -42,6 +43,14 @@ dst/%.js: scripts/%.js @mkdir -p $(@D) ln -f $< $@ +dst/poster_%.webp: images/poster_%.png + @mkdir -p $(@D) + magick $< -resize 2000x2000 $@ + +dst/poster_%.jpg: images/poster_%.png + @mkdir -p $(@D) + magick $< -resize 2000x2000 $@ + dst/%.webp: images/%.jpg @mkdir -p $(@D) magick $< $@ diff --git a/images/poster_cz.png b/images/poster_cz.png new file mode 100644 index 0000000..0da1dbf Binary files /dev/null and b/images/poster_cz.png differ diff --git a/images/poster_en.png b/images/poster_en.png new file mode 100644 index 0000000..71f21e1 Binary files /dev/null and b/images/poster_en.png differ