Skip to content
Snippets Groups Projects
Makefile 200 B
PLANTUML ?= ../../support/plantuml/plantuml.jar

TARGETS = $(subst .pu,.png,$(wildcard *.pu))

all: $(TARGETS)

clean:
	rm -f *.png

.pu.png:
	java -jar $(PLANTUML) -tpng -o . $<

.SUFFIXES: .pu .png