You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
324 B
16 lines
324 B
4 years ago
|
# The double dollar is needed to prevent expansion of $2 in the awk program
|
||
|
OS := $(shell awk -F= '/^NAME/{print $$2}' /etc/os-release)
|
||
|
|
||
|
.PHONY: graphviz
|
||
|
graphviz.install:
|
||
|
echo ${OS}
|
||
|
ifeq (${OS},"Ubuntu")
|
||
|
sudo apt install graphviz
|
||
|
endif
|
||
|
|
||
|
states.svg: states.dot
|
||
|
dot -Tsvg states.dot > states.svg
|
||
|
|
||
|
clean:
|
||
|
rm -f states.svg
|