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:
|
all:
|
||||||
@echo "Nothing to make, make install."
|
@echo "Nothing to make, make install."
|
||||||
|
|
||||||
|
install:
|
||||||
|
$(INSTALL) -D -m 0755 -s $(CCOLLECT) $(destination)
|
||||||
|
$(LN) $(destination) $(path_destination)
|
||||||
|
|
||||||
documentation:
|
documentation:
|
||||||
@echo "Generating HTML-documentation"
|
@echo "Generating HTML-documentation"
|
||||||
@asciidoc -n -o doc/ccollect.html doc/ccollect.text
|
@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
|
publish-doc: documentation
|
||||||
@chmod a+r doc/ccollect.html
|
@chmod a+r doc/ccollect.html
|
||||||
@scp doc/ccollect.html doc/ccollect.text $(host):$(docdir)
|
@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