make most vars immediate
This commit is contained in:
parent
ecaba4e33d
commit
9e98398830
1 changed files with 13 additions and 13 deletions
16
Makefile
16
Makefile
|
@ -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 \
|
||||||
|
|
Loading…
Reference in a new issue