make most vars immediate

This commit is contained in:
Rhiannon Morris 2020-07-19 18:05:01 +02:00
parent ecaba4e33d
commit 9e98398830

View file

@ -1,23 +1,23 @@
DATADIR = data DATADIR := data
TMPDIR = _tmp TMPDIR := _tmp
BUILDDIR = _build BUILDDIR := _build
INFONAME = info.yaml INFONAME := info.yaml
ROOT = https://gallery.niss.website ROOT := https://gallery.niss.website
# SMALL = thumbnails, MED = single pages (link to full size) # SMALL = thumbnails, MED = single pages (link to full size)
SMALL := 200 SMALL := 200
MEDW := 1000 MEDW := 1000
MEDH := 1200 MEDH := 1200
MAKEPAGES = $(TMPDIR)/make-pages MAKEPAGES := $(TMPDIR)/make-pages
YAMLS != find $(DATADIR) -name $(INFONAME) YAMLS != find $(DATADIR) -name $(INFONAME)
SCRIPTS := $(wildcard script/*.js) SCRIPTS := $(wildcard script/*.js)
STYLES := $(wildcard style/*.css) STYLES := $(wildcard style/*.css)
STYLESVGS = $(wildcard style/*.svg) STYLESVGS := $(wildcard style/*.svg)
STYLEPNGS = $(wildcard style/*.png) STYLEPNGS := $(wildcard style/*.png)
FONTS := $(shell find fonts \ FONTS := $(shell find fonts \
-iname '*.eot' -or -iname '*.svg' -or \ -iname '*.eot' -or -iname '*.svg' -or \