mirror of
https://github.com/envmodules/modules.git
synced 2026-06-14 00:42:43 +08:00
12 lines
144 B
Makefile
12 lines
144 B
Makefile
.PHONY: clean
|
|
|
|
imgs := $(patsubst %.cast,%.svg,$(wildcard */*.cast))
|
|
|
|
all: $(imgs)
|
|
|
|
%.svg: %.cast
|
|
svg-term --out $@ <$<
|
|
|
|
clean:
|
|
rm -f $(imgs)
|