ccollect/Makefile

212 lines
5.2 KiB
Makefile
Raw Normal View History

2006-01-13 11:44:02 +00:00
#
2008-03-12 23:22:26 +00:00
# 2006-2008 Nico Schottelius (nico-ccollect at schottelius.org)
#
# This file is part of ccollect.
#
# ccollect is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# ccollect is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with ccollect. If not, see <http://www.gnu.org/licenses/>.
#
# Initially written on Fri Jan 13 12:13:08 CET 2006
2006-01-13 11:44:02 +00:00
#
2008-02-14 00:24:26 +00:00
# FIXME: add prefix-support?
2008-03-12 23:22:26 +00:00
#
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
host=localhost
dir=/home/users/nico/privat/rechner/netz/seiten/www.nico.schottelius.org/src/software/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 \
2008-03-12 23:22:26 +00:00
doc/man/ccollect_analyse_logs.text \
2008-03-07 22:01:56 +00:00
doc/man/ccollect_delete_source.text \
2008-03-12 23:22:26 +00:00
doc/man/ccollect_logwrapper.text \
doc/man/ccollect_list_intervals.text
2007-08-17 09:07:55 +00:00
DOCS = ${MANDOCS} doc/ccollect.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
#
# Tools
#
TOOLS=ccollect_add_source.sh \
ccollect_analyse_logs.sh \
ccollect_delete_source.sh \
ccollect_list_intervals.sh \
ccollect_logwrapper.sh \
ccollect_list_intervals.sh
TOOLSMAN1 = $(subst ccollect,doc/man/ccollect,$(TOOLS))
TOOLSMAN = $(subst .sh,.text,$(TOOLSMAN1))
TOOLSFP = $(subst ccollect,tools/ccollect,$(TOOLS))
#t2: $(TOOLSMAN)
t2:
echo $(TOOLS) - $(TOOLSMAN) - $(TOOLSFP)
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
#test: ccollect.sh documentation
/tmp/ccollect:
mkdir -p /tmp/ccollect
test: ccollect.sh /tmp/ccollect
CCOLLECT_CONF=./conf ./ccollect.sh daily from-remote
CCOLLECT_CONF=./conf ./ccollect.sh daily local
CCOLLECT_CONF=./conf ./ccollect.sh daily "local-with&ampersand"
CCOLLECT_CONF=./conf ./ccollect.sh daily source-without-destination
CCOLLECT_CONF=./conf ./ccollect.sh daily "source with spaces and interval"
CCOLLECT_CONF=./conf ./ccollect.sh daily to-remote
CCOLLECT_CONF=./conf ./ccollect.sh daily with_exec
CCOLLECT_CONF=./conf ./ccollect.sh daily very_verbose
touch /tmp/ccollect/$$(ls /tmp/ccollect | head -n1).ccollect-marker
CCOLLECT_CONF=./conf ./ccollect.sh daily delete_incomplete
CCOLLECT_CONF=./conf ./ccollect.sh daily no-source-must-fail
test2: ccollect.sh /tmp/ccollect
cd ./conf/sources/; for s in *; do CCOLLECT_CONF=../ ../../ccollect.sh daily "$$s"; done
CCOLLECT_CONF=./conf ./ccollect.sh -a daily