Commit 1c68d1d4 authored by Federico G. Schwindt's avatar Federico G. Schwindt

Fix build with bmake

parent 1deaabad
# Makefile for graphviz outputs
SUFFIXES: .dot .pdf .svg
# for an out-of-tree build, sphinx needs the output in builddir
# XXX is there a better way to do this?
......@@ -54,7 +56,7 @@ else
@DOT@ -Tpdf -Gsize=$(SIZE) -Grotate=90 $< >$@
endif
%.pdf: %.dot
.dot.pdf:
if ! HAVE_DOT
@echo ==================================================
@echo You need graphviz installed to generate pdf output
......@@ -64,7 +66,7 @@ else
@DOT@ -Tpdf -Gsize=$(SIZE) $< >$@
endif
%.svg: %.dot
.dot.svg:
if ! HAVE_DOT
@echo ==================================================
@echo You need graphviz installed to generate svg output
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment