ccollect/Makefile

157 lines
3.2 KiB
Makefile
Raw Normal View History

2006-01-13 11:44:02 +00:00
#
# ccollect
# Nico Schottelius, Fri Jan 13 12:13:08 CET 2006
#
2008-02-14 00:24:26 +00:00
# FIXME: add prefix-support?
2006-01-13 11:44:02 +00:00
INSTALL=install
CCOLLECT_SOURCE=ccollect.sh
CCOLLECT_DEST=ccollect.sh
2006-01-13 11:44:02 +00:00
LN=ln -sf
ASCIIDOC=asciidoc
DOCBOOKTOTEXI=docbook2x-texi
2006-05-12 15:17:28 +00:00
DOCBOOKTOMAN=docbook2x-man
2006-10-26 09:55:16 +00:00
XSLTPROC=xsltproc
XSL=/usr/share/xml/docbook/stylesheet/nwalsh/html/docbook.xsl
2007-08-17 09:07:55 +00:00
A2X=a2x
2006-01-13 11:44:02 +00:00
2006-03-08 22:02:34 +00:00
prefix=/usr/packages/ccollect-git
bindir=${prefix}/bin
destination=${bindir}/${CCOLLECT_DEST}
2006-01-13 11:44:02 +00:00
2007-08-17 09:07:55 +00:00
mandest=${prefix}/man/man1
manlink=/usr/local/man/man1
2006-01-13 11:44:02 +00:00
path_dir=/usr/local/bin
path_destination=${path_dir}/${CCOLLECT_DEST}
2006-01-13 11:44:02 +00:00
# where to publish
2006-10-15 19:27:29 +00:00
host=home.schottelius.org
dir=www/org/schottelius/unix/www/ccollect/
docdir=${dir}/doc
2006-05-12 13:54:38 +00:00
#
# Asciidoc will be used to generate other formats later
#
2007-08-17 09:07:55 +00:00
MANDOCS = doc/man/ccollect.text \
2008-03-07 22:01:56 +00:00
doc/man/ccollect_add_source.text \
doc/man/ccollect_delete_source.text \
doc/man/ccollect-logwrapper.text \
2007-08-17 09:07:55 +00:00
doc/man/list_ccollect_intervals.text
DOCS = ${MANDOCS} doc/ccollect.text doc/ccollect-DE.text
2006-05-12 13:54:38 +00:00
2006-10-26 09:55:16 +00:00
#
# Doku
#
HTMLDOCS = ${DOCS:.text=.html}
DBHTMLDOCS = ${DOCS:.text=.htm}
2006-10-26 09:55:16 +00:00
2007-08-17 09:23:32 +00:00
# texi is broken currently, don't know why xslt things complain yet
TEXIDOCS = ${DOCS:.text=.texi}
2007-08-17 09:23:32 +00:00
TEXIDOCS =
# fop fails here, so disable it for now
2007-08-17 09:23:32 +00:00
PDFDOCS = ${DOCS:.text=.pdf}
PDFDOCS =
2006-10-26 09:55:16 +00:00
2007-08-17 09:28:05 +00:00
MANPDOCS = ${MANDOCS:.text=.1}
2006-10-26 09:55:16 +00:00
DOCBDOCS = ${DOCS:.text=.docbook}
2006-10-26 09:55:16 +00:00
2007-08-17 09:23:32 +00:00
DOC_ALL = ${HTMLDOCS} ${DBHTMLDOCS} ${TEXIDOCS} ${MANPDOCS} ${PDFDOCS}
2006-10-26 09:55:16 +00:00
html: ${HTMLDOCS}
htm: ${DBHTMLDOCS}
info: ${TEXIDOCS}
man: ${MANPDOCS}
2007-08-17 09:23:32 +00:00
pdf: ${PDFDOCS}
documentation: ${DOC_ALL}
2006-10-26 09:55:16 +00:00
#
# End user targets
#
2006-01-13 11:44:02 +00:00
all:
2006-06-15 21:56:47 +00:00
@echo "----------- ccollect make targets --------------"
@echo "documentation: generate HTMl, Texinfo and manpage"
@echo "html: only generate HTML"
@echo "info: only generate Texinfo"
@echo "man: only generate manpage{s}"
@echo "install: install ccollect to ${prefix}"
2006-01-13 11:44:02 +00:00
2007-08-17 09:07:55 +00:00
install: install-link install-manlink
install-link: install-script
${LN} ${destination} ${path_destination}
2006-01-17 11:13:30 +00:00
install-script:
${INSTALL} -D -m 0755 ${CCOLLECT_SOURCE} ${destination}
2007-08-17 09:07:55 +00:00
install-man: man
${INSTALL} -d -m 0755 ${mandest}
${INSTALL} -D -m 0644 doc/man/*.1 ${mandest}
install-manlink: install-man
${INSTALL} -d -m 0755 ${manlink}
for man in ${mandest}/*; do ${LN} $$man ${manlink}; done
2006-10-26 09:55:16 +00:00
# docbook gets .htm, asciidoc directly .html
%.htm: %.docbook
${XSLTPROC} -o $@ ${XSL} $<
%.html: %.text %.docbook
${ASCIIDOC} -n -o $@ $<
%.html: %.text
${ASCIIDOC} -n -o $@ $<
%.docbook: %.text
${ASCIIDOC} -n -b docbook -o $@ $<
%.texi: %.docbook
${DOCBOOKTOTEXI} --to-stdout $< > $@
2006-01-13 11:44:02 +00:00
2007-08-17 09:07:55 +00:00
#%.mandocbook: %.text
# ${ASCIIDOC} -b docbook -d manpage -o $@ $<
#%.man: %.mandocbook
# ${DOCBOOKTOMAN} --to-stdout $< > $@
2007-08-17 09:28:05 +00:00
#%.man: %.text
%.1: %.text
2007-08-17 09:07:55 +00:00
${A2X} -f manpage $<
2006-05-12 15:42:08 +00:00
2007-08-17 09:23:32 +00:00
%.pdf: %.text
${A2X} -f pdf $<
2006-05-12 15:17:28 +00:00
2006-01-17 11:13:30 +00:00
#
# Developer targets
#
update:
2007-08-17 09:28:05 +00:00
@git push
2006-01-17 11:13:30 +00:00
publish-doc: documentation
@echo "Transferring files to ${host}"
@chmod a+r ${DOCS} ${DOC_ALL}
@tar c ${DOCS} ${DOC_ALL} | ssh ${host} "cd ${dir}; tar xv"
2006-05-12 13:54:38 +00:00
#
# Distribution
#
2007-08-17 09:23:32 +00:00
clean:
rm -f ${DOC_ALL}
2007-08-17 09:28:05 +00:00
rm -f doc/man/*.[0-9] doc/man/*.xml doc/*.fo doc/man/*.fo
2006-05-12 13:54:38 +00:00
2007-08-17 09:23:32 +00:00
distclean: clean
rm -f ${DOCBDOCS}
2006-05-12 13:54:38 +00:00
2006-06-15 21:56:47 +00:00
#
# Be nice with the users and generate documentation for them
#
2006-05-12 13:54:38 +00:00
dist: distclean documentation
2007-08-14 12:57:26 +00:00
2007-08-17 09:23:32 +00:00
test: ccollect.sh documentation
2007-08-14 12:57:26 +00:00
CCOLLECT_CONF=./conf ./ccollect.sh daily "source with spaces"