diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2021-12-10 16:48:23 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2021-12-10 17:23:26 +0100 |
commit | fa15707d9b9aa3590facd6718df336d55f846815 (patch) | |
tree | b05cdc04313b25412e4423589081bd0a5bb071ca /tools/Makefile | |
parent | 16c6766e797e14690805ad6219619d8936ab57e7 (diff) | |
download | fiv-fa15707d9b9aa3590facd6718df336d55f846815.tar.gz fiv-fa15707d9b9aa3590facd6718df336d55f846815.tar.xz fiv-fa15707d9b9aa3590facd6718df336d55f846815.zip |
pnginfo: extract eXIf chunk data
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index 5d4fd71..5f75065 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,13 +1,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. +CFLAGS = -g -O2 -Wall -Wextra `pkg-config --cflags $(deps)` LDLIBS = -ljq `pkg-config --libs $(deps)` deps = libpng targets = pnginfo jpeginfo all: $(targets) +$(targets): info.h clean: rm -f $(targets) |