1
0
pico-epaper/Makefile

27 Zeilen
514 B
Makefile

2023-04-22 18:58:50 +00:00
.DEFAULT_GOAL := build
2023-04-22 17:14:21 +00:00
2023-04-22 18:58:50 +00:00
SRC_IMAGES := $(wildcard gallery/*.jpg)
DST_IMAGES := $(sort $(addprefix build/,$(addsuffix .bmp,$(notdir $(basename $(SRC_IMAGES))))))
all: clean build
2023-04-22 17:14:21 +00:00
download: jokes.json
2023-04-22 18:58:50 +00:00
jokes.json: build-dir
curl -o build/jokes.json https://github.com/wiz64/superfun/raw/main/database/ichd/jokes-file.json
build: build-dir images download
build-dir:
mkdir -p build
images: $(DST_IMAGES)
$(DST_IMAGES): build/%.bmp: gallery/%.jpg
./convert_image.sh $< $@
.PHONY: clean
clean:
rm -rf build/
2023-04-22 17:14:21 +00:00