Front website https://natronics.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
422 B

8 years ago
8 years ago
  1. all: favicon.ico
  2. JEKYLL_ENV=production jekyll build
  3. dev:
  4. jekyll build
  5. favicon.ico: favicon.svg
  6. rsvg-convert -w 16 -h 16 --background-color=none favicon.svg -o favicon-16.png
  7. rsvg-convert -w 32 -h 32 --background-color=none favicon.svg -o favicon-32.png
  8. rsvg-convert -w 64 -h 64 --background-color=none favicon.svg -o favicon-64.png
  9. convert favicon-16.png favicon-32.png favicon-64.png favicon.ico
  10. rm favicon*.png