Blame


1 548e77d3 2022-08-26 op OUTDIR = /var/www/marc
2 7d6d378a 2022-08-24 op
3 39f537ac 2023-05-04 op .PHONY: all images dirs gzip scaleimgs
4 7d6d378a 2022-08-24 op
5 39f537ac 2023-05-04 op all: dirs images ${OUTDIR}/style.css
6 7d6d378a 2022-08-24 op
7 30f047cf 2022-08-25 op images: ${OUTDIR}/got@2x.png ${OUTDIR}/got.png ${OUTDIR}/got-tiny@2x.png \
8 30f047cf 2022-08-25 op ${OUTDIR}/got-tiny.png
9 7d6d378a 2022-08-24 op
10 2c580f18 2022-08-29 op ${OUTDIR}/got@2x.png: images/got.orig.png
11 2c580f18 2022-08-29 op cp $? $@
12 2c580f18 2022-08-29 op ${OUTDIR}/got.png: images/got.png
13 2c580f18 2022-08-29 op cp $? $@
14 2c580f18 2022-08-29 op ${OUTDIR}/got-tiny@2x.png: images/got-tiny@2x.png
15 2c580f18 2022-08-29 op cp $? $@
16 2c580f18 2022-08-29 op ${OUTDIR}/got-tiny.png: images/got-tiny.png
17 2c580f18 2022-08-29 op cp $? $@
18 30f047cf 2022-08-25 op ${OUTDIR}/style.css: style.css
19 2c580f18 2022-08-29 op cp $? $@
20 7d6d378a 2022-08-24 op
21 30f047cf 2022-08-25 op dirs:
22 9ad9e8a1 2022-08-26 op @mkdir -p ${OUTDIR}/mail/
23 9ad9e8a1 2022-08-26 op @mkdir -p ${OUTDIR}/parts/
24 9ad9e8a1 2022-08-26 op @mkdir -p ${OUTDIR}/text/
25 9ad9e8a1 2022-08-26 op @mkdir -p ${OUTDIR}/thread/
26 7d6d378a 2022-08-24 op
27 30f047cf 2022-08-25 op gzip:
28 4632ac23 2022-08-26 op gzip -fkr ${OUTDIR}
29 7d6d378a 2022-08-24 op
30 fa7e89c3 2022-08-29 op scaleimgs:
31 2c580f18 2022-08-29 op convert images/got.orig.png -resize 200x200 images/got.png
32 2c580f18 2022-08-29 op convert images/got.orig.png -resize 128x128 images/got-tiny@2x.png
33 2c580f18 2022-08-29 op convert images/got.orig.png -resize 64x64 images/got-tiny.png
34 fa7e89c3 2022-08-29 op optipng -o7 -zm1-9 images/*.png