diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2022-06-10 01:16:14 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2022-06-10 02:08:56 +0200 |
commit | 60a8ee7a80063eaf620eaa727af0f484fdb91bff (patch) | |
tree | 5791554d3691a6a8cd903123d77725d3b3dd7756 /tools/Makefile | |
parent | 84f8c9436ffb84ca5d443b906f1ffb7be42a50e2 (diff) | |
download | fiv-60a8ee7a80063eaf620eaa727af0f484fdb91bff.tar.gz fiv-60a8ee7a80063eaf620eaa727af0f484fdb91bff.tar.xz fiv-60a8ee7a80063eaf620eaa727af0f484fdb91bff.zip |
Build tools with Meson as well
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/tools/Makefile b/tools/Makefile deleted file mode 100644 index a95b2d9..0000000 --- a/tools/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -SHELL = /bin/sh -# libjq 1.6 lacks a pkg-config file, and there is no release in sight. -# 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 tiffinfo webpinfo bmffinfo - -all: $(targets) -$(targets): info.h -clean: - rm -f $(targets) - -.PHONY: all clean |