Add thumbnail cache inspection tools

This commit is contained in:
2021-10-01 11:37:50 +02:00
parent bbabaabc20
commit 25871839a2
4 changed files with 280 additions and 0 deletions

13
tools/Makefile Normal file
View File

@@ -0,0 +1,13 @@
SHELL = /bin/sh
# libjq 1.6 lacks a pkg-config file, and there is no release in sight.
CFLAGS = -g -O2 -Wall -Wextra `pkg-config --cflags $(deps)`
LDFLAGS = -ljq `pkg-config --libs $(deps)`
deps = libpng
targets = pnginfo
all: $(targets)
clean:
rm -f $(targets)
.PHONY: all clean