blob: d1a0e8a136f983dce2d56100cb2598b79ce18cd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
BUILDDIR := build
.PHONY: default clean
default: plantuml.jar
tox
plantuml.jar:
wget 'http://downloads.sourceforge.net/project/plantuml/plantuml.jar'
clean:
rm -rf .tox build plantuml.jar
|