Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
varnish-cache
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
varnishcache
varnish-cache
Commits
5772d3cf
Commit
5772d3cf
authored
Oct 13, 2014
by
Nils Goroll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bail out with a clear error if graphviz is missing for building the html and pdf targets
parent
d36df31c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
Makefile.am
doc/graphviz/Makefile.am
+12
-2
No files found.
doc/graphviz/Makefile.am
View file @
5772d3cf
...
...
@@ -21,7 +21,6 @@ dist-hook:
SIZE
=
8.4,11.7
if
HAVE_DOT
PDFS
=
\
cache_http1_fsm.pdf
\
cache_req_fsm.pdf
\
...
...
@@ -31,11 +30,22 @@ SVGS = \
cache_http1_fsm.svg
\
cache_req_fsm.svg
\
cache_fetch.svg
endif
pdf
:
$(PDFS)
if
!
HAVE_DOT
@
echo
==================================================
@echo
You
need
graphviz
installed
to
generate
pdf
output
@
echo
==================================================
@false
endif
html
:
$(SVGS) link_srcdir
if
!
HAVE_DOT
@
echo
===================================================
@echo
You
need
graphviz
installed
to
generate
html
output
@
echo
===================================================
@false
endif
# XXX does not fit onto a4 unless in landscape
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment