diff options
-rw-r--r-- | GNUmakefile | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/GNUmakefile b/GNUmakefile index b8f5183..4d2804d 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -3,19 +3,19 @@ MAKEFLAGS := -j$(shell nproc) # Eurozone coin and -banknote types eznotes := 5e 10e 20e 50e 100e 200e 500e ezcoins := 1c 2c 5c 10c 20c 50c 1e 2e -ezcodes := $(shell \ - grep -Eo '^[A-Z]{2}' data/coins \ - | sort \ - | uniq \ - | tr A-Z a-z \ +ezcodes := $(shell \ + grep -Eo '^[A-Z]{2}' data/coins \ + | sort \ + | uniq \ + | tr A-Z a-z \ ) # Source files that aren’t dynamically generated -sources := $(shell find src -type f \( \ - -name 'index.gsp' -or \ - -name '*.css' -or \ - -name '*.svg' -or \ - -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 @@ -92,7 +92,7 @@ out/%: src/% cp $< $@ check: - LANG=en_US.UTF-8 find src -name '*.gsp' -exec \ + LANG=en_US.UTF-8 find src -name '*.gsp' -exec \ aspell --home-dir=./ --ignore-case check {} \; clean: |