aboutsummaryrefslogtreecommitdiff
path: root/tools/Makefile
blob: 5d4fd7181a3d4b32985d30c06d956d1405570dfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)`
# libjq 1.6 is required.
LDLIBS = -ljq `pkg-config --libs $(deps)`

deps = libpng
targets = pnginfo jpeginfo

all: $(targets)
clean:
	rm -f $(targets)

.PHONY: all clean