| commit | a516762096b678341853062cf89589811ea6888a | [log] [tgz] |
|---|---|---|
| author | Marc Kupietz <kupietz@ids-mannheim.de> | Sat Apr 13 14:18:10 2024 +0200 |
| committer | Marc Kupietz <kupietz@ids-mannheim.de> | Sat Apr 13 14:18:10 2024 +0200 |
| tree | 958956588765df3a796678f849ba6654c4ef827e | |
| parent | 975996e3823c528127ab70dec5ce074bef3dd1b9 [diff] |
Makefile: Fix yy substitution in for loop
diff --git a/Makefile b/Makefile index 4122008..a23bf10 100644 --- a/Makefile +++ b/Makefile
@@ -99,6 +99,6 @@ rm -rf $(BUILD_DIR) $(TARGET_DIR) alli5: - for yy in {98..99} {00..23}; do \ + for yy in $(shell seq -f "%02.f" 95 99) $(shell seq -f "%02.f" 0 24); do \ $(MAKE) i5 YY=$$yy; \ done