mirror of
https://github.com/miljegen/browser-milje.git
synced 2024-12-22 07:27:29 +00:00
14 lines
245 B
Makefile
14 lines
245 B
Makefile
ENCODED_IMAGES := $(wildcard assets/*.png.64)
|
|
IMAGES := $(patsubst assets/%.png.64, images/%.png, $(ENCODED_IMAGES))
|
|
|
|
out: $(IMAGES)
|
|
|
|
images/:
|
|
mkdir $@
|
|
echo '*' > images/.gitignore
|
|
images/%.png: assets/%.png.64 | images/
|
|
base64 -d $< > $@
|
|
|
|
|
|
|