From 58c34a0c82740dd5fe6fe10c9b07340e8431125b Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Thu, 4 Jul 2024 13:53:26 +0200 Subject: Use a single invokation of find(1) --- GNUmakefile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 1537cde..c5cb884 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -11,11 +11,12 @@ ezcodes := $(shell \ ) # Source files that aren’t dynamically generated -sources := \ - $(shell find src -type f -name 'index.gsp') \ - $(shell find src -type f -name '*.css') \ - $(shell find src -type f -name '*.svg') \ - $(shell find src -type f -name '*.woff2') +sources := $(shell find src -type f \( \ + -name 'index.gsp' -or \ + -name '*.css' -or \ + -name '*.svg' -or \ + -name '*.woff2' \ +\)) # Different euro coin and -banknote page types eurocc := $(ezcodes:%=out/euro/%/index.html) -- cgit v1.2.3