From 01a4cb8feb71dfca99583a786b63c5afb2a29448 Mon Sep 17 00:00:00 2001 From: Thomas Kolb Date: Sun, 2 Jul 2023 14:48:16 +0000 Subject: [PATCH] Makefile: fixed from_xz targets --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9b65601..193c96d 100644 --- a/Makefile +++ b/Makefile @@ -37,8 +37,8 @@ imgs/%-avg_pwr-highres.webp: logs/%.csv # Targets to re-build images from xz-ed logs SRCS_XZ:=$(wildcard logs/*.csv.xz) -IMGS1_XZ:=$(patsubst %.csv, %-avg_pwr-fromxz.webp, $(SRCS_XZ)) -IMGS2_XZ:=$(patsubst %.csv, %-peak-fromxz.webp, $(SRCS_XZ)) +IMGS1_XZ:=$(patsubst %.csv.xz, %-avg_pwr-fromxz.webp, $(SRCS_XZ)) +IMGS2_XZ:=$(patsubst %.csv.xz, %-peak-fromxz.webp, $(SRCS_XZ)) IMGS_XZ:=$(patsubst logs/%, imgs/%, $(IMGS1_XZ) $(IMGS2_XZ)) .PHONY: from_xz