First commit
This commit is contained in:
commit
b7a1213f91
29 changed files with 1312 additions and 0 deletions
16
Graphs/GNUmakefile
Normal file
16
Graphs/GNUmakefile
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue