mirror of
https://github.com/daylinmorgan/logo.git
synced 2024-12-21 14:10:43 -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)
|
||||
CONDA = source $$(conda info --base)/etc/profile.d/conda.sh; conda activate;
|
||||
SVGS = $(shell find -type f -wholename "./docs/*.svg")
|
||||
PNGS = $(patsubst ./docs/svg/%.svg,./docs/png/%.png, $(SVGS))
|
||||
SRC := $(shell find logo/ -type f)
|
||||
CONDA := source $$(conda info --base)/etc/profile.d/conda.sh; conda activate;
|
||||
SVGS := $(shell find -type f -wholename "./docs/*.svg")
|
||||
PNGS := $(patsubst ./docs/svg/%.svg,./docs/png/%.png, $(SVGS))
|
||||
REV := $(shell date +'%Y.%m.%d-' )$(shell git describe --always --dirty | sed s'/dirty/dev/')
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue