Skip to content

Commit

Permalink
Makefile: frontend convert command flags order
Browse files Browse the repository at this point in the history
  • Loading branch information
azimut committed Oct 3, 2024
1 parent a0c72f3 commit 90568df
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions frontend/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,12 @@ dev: public/temp/bundle.js
elm-live src/Main.elm --port=8080 --dir=public/ --open -- --output=public/elm.js --debug

public/favicon.ico public/apple-touch-icon.png:
convert -font FreeSerif-Bold-Italic \
-size 1024x1024 xc:'hsl(24,10%,5%)' \
convert -size 1024x1024 \
-font FreeSerif-Bold-Italic \
-kerning 0 -pointsize 840 \
-undercolor none \
-fill 'hsl(24,90%,80%)' \
-annotate +475+800 'P' \
-fill 'hsl(24,100%,98%)' \
-annotate +15+800 'N' \
-undercolor none xc:'hsl(24,10%,5%)' \
-fill 'hsl(24,90%,80%)' -annotate +475+800 'P' \
-fill 'hsl(24,100%,98%)' -annotate +15+800 'N' \
\( -clone 0 -resize 180x180 -write public/apple-touch-icon.png \) \
\( -clone 0 -define icon:auto-resize=64,48,32,16 -write public/favicon.ico \) \
null:
Expand Down

0 comments on commit 90568df

Please sign in to comment.