100 lines
1.6 KiB
Makefile
100 lines
1.6 KiB
Makefile
#
|
|
# ccollect
|
|
# Nico Schottelius, Fri Jan 13 12:13:08 CET 2006
|
|
#
|
|
|
|
INSTALL=install
|
|
CCOLLECT=ccollect.sh
|
|
LN=ln -sf
|
|
ASCIIDOC=asciidoc
|
|
DOCBOOKTOTEXI=docbook2x-texi
|
|
DOCBOOKTOMAN=docbook2x-man
|
|
|
|
prefix=/usr/packages/ccollect-git
|
|
bindir=$(prefix)/bin
|
|
destination=$(bindir)/$(CCOLLECT)
|
|
|
|
path_dir=/usr/local/bin
|
|
path_destination=$(path_dir)/$(CCOLLECT)
|
|
|
|
# where to publish
|
|
host=creme.schottelius.org
|
|
dir=www/org/schottelius/linux/ccollect
|
|
docdir=$(dir)/doc
|
|
|
|
#
|
|
# Asciidoc will be used to generate other formats later
|
|
#
|
|
DOCS = doc/ccollect.text doc/ccollect-DE.text
|
|
|
|
#
|
|
# End user targets
|
|
#
|
|
all:
|
|
@echo "Nothing to make, make install."
|
|
|
|
install: install-script install-link
|
|
|
|
install-link: install-script
|
|
$(LN) $(destination) $(path_destination)
|
|
|
|
install-script:
|
|
$(INSTALL) -D -m 0755 -s $(CCOLLECT) $(destination)
|
|
|
|
|
|
%.html: %.text
|
|
${ASCIIDOC} -n -o $@ $<
|
|
|
|
%.docbook: %.text
|
|
${ASCIIDOC} -n -b docbook -o $@ $<
|
|
|
|
%.texi: %.docbook
|
|
${DOCBOOKTOTEXI} --to-stdout $< > $@
|
|
|
|
%.man: %.docbook
|
|
${DOCBOOKTOMAN} --to-stdout $< > $@
|
|
|
|
#
|
|
# Developer targets
|
|
#
|
|
update:
|
|
@cg-update creme
|
|
|
|
push-work:
|
|
@cg-push creme
|
|
@cg-push sygroup
|
|
|
|
publish-doc: documentation
|
|
@echo "Transferring files to $(host)"
|
|
@chmod a+r doc/*.html doc/*.text
|
|
@scp doc/*.text doc/*.html $(host):$(docdir)
|
|
|
|
#
|
|
# Doku
|
|
#
|
|
HTMLDOCS = $(DOCS:.text=.html)
|
|
|
|
TEXIDOCS = $(DOCS:.text=.texi)
|
|
|
|
MANPDOCS = $(DOCS:.text=.man)
|
|
|
|
DOCBDOCS = $(DOCS:.text=.docbook)
|
|
|
|
|
|
html: ${HTMLDOCS}
|
|
|
|
info: ${TEXIDOCS}
|
|
|
|
documentation: html info
|
|
|
|
#
|
|
# Distribution
|
|
#
|
|
allclean:
|
|
#rm -f doc/*.docbook doc/*.html doc/*.texi
|
|
rm -f $(TEXIDOCS) $(HTMLDOCS)
|
|
|
|
distclean:
|
|
rm -f $(DOCBDOCS)
|
|
|
|
dist: distclean documentation
|