projet_altarica/Graphs/GNUmakefile
2023-03-01 21:40:15 +01:00

16 lines
201 B
Makefile

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