diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2021-11-01 04:26:20 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2021-11-01 05:17:25 +0100 |
commit | 7ca53b031e5faeb875e7e2cf042f1941bf076bb1 (patch) | |
tree | e8a8c9b4833b1bfca2dd0c518dd70222d8a8849e | |
parent | befa7df4810f8af21308b9d00cdebf00e63cdaa3 (diff) | |
download | fiv-7ca53b031e5faeb875e7e2cf042f1941bf076bb1.tar.gz fiv-7ca53b031e5faeb875e7e2cf042f1941bf076bb1.tar.xz fiv-7ca53b031e5faeb875e7e2cf042f1941bf076bb1.zip |
tools: fix the Makefile
-rw-r--r-- | tools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index d024620..c7fa1a5 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,7 +1,7 @@ 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)` +LDLIBS = -ljq `pkg-config --libs $(deps)` deps = libpng targets = pnginfo |