Add a draft introduction to Git from graphs

This commit is contained in:
Dimitri Lozeve 2021-03-01 20:01:38 +01:00
parent 822d0f1ae0
commit f7aae0452f
24 changed files with 2849 additions and 0 deletions

View file

@ -0,0 +1,12 @@
INPUTS=$(wildcard *.m4)
TARGETS=$(INPUTS:.m4=.svg)
.PHONY: all
all: $(TARGETS)
%.svg: %.m4 master.dot merged.dot feature.dot bugfix.dot
m4 $< | dot -Tsvg -o $@
.PHONY: clean
clean:
rm -f $(TARGETS)