adding cic-eth as sub dir

This commit is contained in:
2021-02-01 09:12:51 -08:00
parent ed3991e997
commit a4587deac5
317 changed files with 819441 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
INPUTS = $(wildcard *.dot)
OUTPUTS = $(patsubst %.dot, %.png, $(INPUTS))
.SUFFIXES: .dot .png
.dot.png:
dot -T png $(basename $@).dot > $@
all: $(OUTPUTS)
clean:
rm -vf *.png
.PHONY: clean