mirror of
https://github.com/daylinmorgan/logo.git
synced 2024-12-21 22:10:45 -06:00
feat: make makefile variables recursively defined
This commit is contained in:
parent
f24c389e3c
commit
988329ee87
1 changed files with 4 additions and 4 deletions
8
Makefile
8
Makefile
|
@ -1,7 +1,7 @@
|
||||||
SRC = $(shell find logo/ -type f)
|
SRC := $(shell find logo/ -type f)
|
||||||
CONDA = source $$(conda info --base)/etc/profile.d/conda.sh; conda activate;
|
CONDA := source $$(conda info --base)/etc/profile.d/conda.sh; conda activate;
|
||||||
SVGS = $(shell find -type f -wholename "./docs/*.svg")
|
SVGS := $(shell find -type f -wholename "./docs/*.svg")
|
||||||
PNGS = $(patsubst ./docs/svg/%.svg,./docs/png/%.png, $(SVGS))
|
PNGS := $(patsubst ./docs/svg/%.svg,./docs/png/%.png, $(SVGS))
|
||||||
REV := $(shell date +'%Y.%m.%d-' )$(shell git describe --always --dirty | sed s'/dirty/dev/')
|
REV := $(shell date +'%Y.%m.%d-' )$(shell git describe --always --dirty | sed s'/dirty/dev/')
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue