X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=nagcollect.git;a=blobdiff_plain;f=Makefile;h=ef19ad4bb63a68d53f99b8bf2673378e99a080d3;hp=c757d38db08f9e95aba482df074f4f2e8c9c911b;hb=e949266062778f8113eafd40db6db45014de32ad;hpb=7b1304e3b17b0d514fe0889b0e3775768268a706 diff --git a/Makefile b/Makefile index c757d38..ef19ad4 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,21 @@ # # NagCollect -- Nagios Data Collector for Passive Checks -# Copyright (c)2009 Alexander Barton, alex@barton.de +# Copyright (c)2009-2010 Alexander Barton, alex@barton.de +# +# This program 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 2 of the License, or +# (at your option) any later version. +# Please read the file COPYING, README and AUTHORS for more information. # all: +clean: + find . -name .DS_Store -delete + +distclean: clean + install: @echo " ** Use make targets 'install-client', 'install-server' and 'install-all'" @echo " ** to install client and/or server components!" @@ -25,27 +36,58 @@ install-server: server/bin/nagios-submit-service /usr/local/sbin/nagios-submit-service install -D -o root -g root -m 644 -p \ server/web/nagcollect.php /var/www/nagcollect.php + [ -r contrib/Makefile.`uname` ] \ + && make -f contrib/Makefile.`uname` "install-server" || true install-client: install -d -o 0 -g 0 -m 755 /usr/local/sbin install -c -o 0 -g 0 -m 755 -p \ client/bin/nagcollect /usr/local/sbin/nagcollect + install -c -o 0 -g 0 -m 755 -p \ + client/bin/nagcollectreset /usr/local/sbin/nagcollectreset install -d -o 0 -g 0 -m 755 /usr/local/etc [ -r /usr/local/etc/nagcollect.conf ] || \ install -o 0 -g 0 -m 600 -p \ client/etc/nagcollect.conf /usr/local/etc/nagcollect.conf install -d -o 0 -g 0 -m 755 /usr/local/lib/nagcollect - (cd client/lib; find . -name '*.tst' | \ + (cd client/lib/tests; find . -name '*.tst' | \ while read x; do \ install -d -o 0 -g 0 -m 755 `dirname "/usr/local/lib/nagcollect/$$x"`; \ install -o 0 -g 0 -m 644 "$$x" "/usr/local/lib/nagcollect/$$x"; \ done \ ) + [ -r contrib/Makefile.`uname` ] \ + && make -f contrib/Makefile.`uname` "install-client" || true + +check: + +dist: distclean + rel=`grep "^NagCollect " ChangeLog|awk "{print \\\$$3 }"|head -n 1`; \ + dir=`basename $${PWD}` \ + && cd .. \ + && COPYFILE_DISABLE=true tar cvzf "NagCollect-R$${rel}.tar.gz" \ + --exclude .git "$${dir}" + +distcheck: check dist + +osxpkg: + rel=`grep "^NagCollect " ChangeLog|awk "{print \\\$$3 }"|head -n 1`; \ + rm -rf "../NagCollect-R$${rel}.mpkg" \ + && packagemaker \ + --doc "contrib/NagCollect.pmdoc" \ + --out "../NagCollect-R$${rel}.mpkg" + +osxdmg: osxpkg + rel=`grep "^NagCollect " ChangeLog|awk "{print \\\$$3 }"|head -n 1`; \ + rm -f "../NagCollect-R$${rel}.dmg" \ + && hdiutil create -srcfolder \ + "../NagCollect-R$${rel}.mpkg" "../NagCollect-R$${rel}.dmg" nagcollecttestscripts: - tar -czvf nagcollecttestscripts.tgz -C client/lib . + COPYFILE_DISABLE=true tar -czvf nagcollecttestscripts.tgz \ + -C client/lib/tests . .PHONY: all install install-all install-server install-client \ - nagcollecttestscripts + clean distclean check dist distcheck nagcollecttestscripts # -eof-