Added pushing/update to Makefile

This commit is contained in:
Nico Schottelius 2006-01-17 12:13:30 +01:00
parent aa680ca284
commit 4415adff26
1 changed files with 14 additions and 3 deletions

View File

@ -22,14 +22,25 @@ docdir=$(dir)/doc
all:
@echo "Nothing to make, make install."
install:
$(INSTALL) -D -m 0755 -s $(CCOLLECT) $(destination)
$(LN) $(destination) $(path_destination)
documentation:
@echo "Generating HTML-documentation"
@asciidoc -n -o doc/ccollect.html doc/ccollect.text
#
# Developer targets
#
update:
@cg-update creme
push-work:
@cg-push creme
@cg-push main
publish-doc: documentation
@chmod a+r doc/ccollect.html
@scp doc/ccollect.html doc/ccollect.text $(host):$(docdir)
install:
$(INSTALL) -D -m 0755 -s $(CCOLLECT) $(destination)
$(LN) $(destination) $(path_destination)