Added pushing/update to Makefile
This commit is contained in:
parent
aa680ca284
commit
4415adff26
1 changed files with 14 additions and 3 deletions
17
Makefile
17
Makefile
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue