fiv/tools/Makefile

14 lines
292 B
Makefile
Raw Normal View History

2021-10-01 11:37:50 +02:00
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)`
2021-11-01 04:26:20 +01:00
LDLIBS = -ljq `pkg-config --libs $(deps)`
2021-10-01 11:37:50 +02:00
deps = libpng
targets = pnginfo jpeginfo
2021-10-01 11:37:50 +02:00
all: $(targets)
clean:
rm -f $(targets)
.PHONY: all clean