Makefile: fixed from_xz targets

This commit is contained in:
Thomas Kolb 2023-07-02 14:48:16 +00:00
parent daf0996138
commit 01a4cb8feb
1 changed files with 2 additions and 2 deletions

View File

@ -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