]> git.ipfire.org Git - thirdparty/squid.git/blame - doc/Programming-Guide/Makefile
SourceFormat Enforcement
[thirdparty/squid.git] / doc / Programming-Guide / Makefile
CommitLineData
4ac4a490 1## Copyright (C) 1996-2017 The Squid Software Foundation and contributors
f2a134b9
AJ
2##
3## Squid software is distributed under GPLv2+ license and includes
4## contributions from numerous individuals and organizations.
5## Please see the COPYING and CONTRIBUTORS files for details.
6##
f36d1b44 7
63be0a78 8all:
9 dyn-docs
10 html-docs
f36d1b44 11
63be0a78 12dyn-docs:
13 rm -f -r tmp
46c90264 14 cd ../../ && (cat squid3.dox ; echo HTML_FILE_EXTENSION = .dyn ; echo HTML_OUTPUT = tmp ) | doxygen - 2>doxygen.log
452591e4
AJ
15 rm -f -r dyn
16 mv tmp dyn
f36d1b44 17
63be0a78 18html-docs:
19 rm -f -r tmp
20 cd ../../ && (cat squid3.dox | sed s/dyn/html/g | sed s/CALL_GRAPH/#/ | sed s/CALLER_GRAPH/#/ | doxygen -) 2>doxygen.log
452591e4
AJ
21 rm -f -r html
22 mv tmp html
f36d1b44 23
24clean:
452591e4 25 rm -f -r tmp html dyn