forked from ungleich-public/ccollect
Generate and publish documentation via make
This commit is contained in:
parent
695567b0ce
commit
aa680ca284
2 changed files with 13 additions and 1 deletions
10
Makefile
10
Makefile
|
@ -14,12 +14,22 @@ destination=$(bindir)/$(CCOLLECT)
|
||||||
path_dir=/usr/local/bin
|
path_dir=/usr/local/bin
|
||||||
path_destination=$(path_dir)/$(CCOLLECT)
|
path_destination=$(path_dir)/$(CCOLLECT)
|
||||||
|
|
||||||
|
# where to publish
|
||||||
|
host=creme.schottelius.org
|
||||||
|
dir=www/org/schottelius/linux/ccollect
|
||||||
|
docdir=$(dir)/doc
|
||||||
|
|
||||||
all:
|
all:
|
||||||
@echo "Nothing to make, make install."
|
@echo "Nothing to make, make install."
|
||||||
|
|
||||||
documentation:
|
documentation:
|
||||||
|
@echo "Generating HTML-documentation"
|
||||||
@asciidoc -n -o doc/ccollect.html doc/ccollect.text
|
@asciidoc -n -o doc/ccollect.html doc/ccollect.text
|
||||||
|
|
||||||
|
publish-doc: documentation
|
||||||
|
@chmod a+r doc/ccollect.html
|
||||||
|
@scp doc/ccollect.html doc/ccollect.text $(host):$(docdir)
|
||||||
|
|
||||||
install:
|
install:
|
||||||
$(INSTALL) -D -m 0755 -s $(CCOLLECT) $(destination)
|
$(INSTALL) -D -m 0755 -s $(CCOLLECT) $(destination)
|
||||||
$(LN) $(destination) $(path_destination)
|
$(LN) $(destination) $(path_destination)
|
||||||
|
|
|
@ -522,6 +522,8 @@ they will still be transferred!</p>
|
||||||
</tr></table>
|
</tr></table>
|
||||||
</div>
|
</div>
|
||||||
<p>This hint was reported by Marcus Wagner.</p>
|
<p>This hint was reported by Marcus Wagner.</p>
|
||||||
|
<h3>5.3. Re-using already created rsync-backups</h3>
|
||||||
|
<p>mkdir intervall.0 ; mv * intervall;</p>
|
||||||
</div>
|
</div>
|
||||||
<h2>6. Examples</h2>
|
<h2>6. Examples</h2>
|
||||||
<div class="sectionbody">
|
<div class="sectionbody">
|
||||||
|
@ -603,7 +605,7 @@ srwali01:/etc/ccollect/sources# du -sh /mnt/hdbackup/wl6/*
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="footer-text">
|
<div id="footer-text">
|
||||||
Version 0.2<br />
|
Version 0.2<br />
|
||||||
Last updated 16-Jan-2006 19:00:31 CEST
|
Last updated 17-Jan-2006 12:09:51 CEST
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in a new issue