task.mk/docs/examples/Makefile

14 lines
244 B
Makefile
Raw Permalink Normal View History

2022-09-18 10:00:53 -05:00
MAKEFLAGS += --no-print-directory
EXAMPLES := check embedded recipe-help phonify
GIFS := $(addsuffix /demo.gif, $(EXAMPLES))
2022-09-18 10:00:53 -05:00
all: $(GIFS)
2022-09-18 10:00:53 -05:00
%/demo.gif: %/demo.tape %/Makefile
cd $* && vhs < demo.tape
2022-09-18 10:00:53 -05:00
clean:
rm -rf $(GIFS)
2022-09-18 10:00:53 -05:00
.PHONY: all clean