First commit

This commit is contained in:
Yorick Barbanneau 2023-03-01 21:40:15 +01:00
commit b7a1213f91
29 changed files with 1312 additions and 0 deletions

16
Graphs/GNUmakefile Normal file
View file

@ -0,0 +1,16 @@
SRC = $(wildcard *.dot)
TARGET = $(SRC:.dot=.pdf)
all: $(TARGET)
clean:
rm -f *~ *.core
cleandir: clean
rm -f $(TARGET) $(SRC)
.SUFFIXES: .dot .pdf
.dot.pdf: $*.dot
dot -Tpdf $*.dot -o $*.pdf