summaryrefslogtreecommitdiffstats
path: root/doc/makefile
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2003-05-13 22:03:48 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2003-05-13 22:03:48 (GMT)
commit54921a5e45644a4b94bc0550e76b30a0049474b8 (patch)
tree2293af39659f516ad5b17f72f440cae219b43447 /doc/makefile
parent110510283a83a0de913ad20b914415bb1ab77c46 (diff)
downloadmonitoring-plugins-54921a5e45644a4b94bc0550e76b30a0049474b8.tar.gz
The developer-guidelines.html file is now generated from the sgml file
by docbook2html at tools/setup time git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@506 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'doc/makefile')
-rw-r--r--doc/makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/makefile b/doc/makefile
new file mode 100644
index 0000000..cd12814
--- /dev/null
+++ b/doc/makefile
@@ -0,0 +1,10 @@
1# Quick makefile to create developer-guidelines.html
2
3developer-guidelines.html: developer-guidelines.sgml
4 if which docbook2html > /dev/null 2>&1; then \
5 docbook2html -u developer-guidelines.sgml ;\
6 if [[ -e developer-guidelines/developer-guidelines.html ]] ; then \
7 mv developer-guidelines/developer-guidelines.html . ;\
8 rm -f developer-guidelines ;\
9 fi ;\
10 fi