feat: make makefile variables recursively defined

This commit is contained in:
Daylin Morgan 2022-08-12 18:45:47 -05:00
parent f24c389e3c
commit 988329ee87
1 changed files with 4 additions and 4 deletions

View File

@ -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/')