Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Makefile 249 B
SOURCES_DOT = $(wildcard *.dot)

OBJECTS_DOT_SVG = $(SOURCES_DOT:.dot=.svg)

OBJECTS = \
	$(OBJECTS_DOT_SVG)

%.svg: %.dot
	dot -Tsvg -o $@ $<

$(OBJECTS):

all: $(OBJECTS)

clean:
	rm -f $(OBJECTS)

default: all

.PHONY: \
	all \
	clean \
	default