X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=nagcollect.git;a=blobdiff_plain;f=Makefile;h=ef19ad4bb63a68d53f99b8bf2673378e99a080d3;hp=9e9c8327abc49e1a7858b6191190a3f92dffdeb0;hb=0de28c9a295ffd46175a3cf5fa15c84b340c78fa;hpb=eafbc117dc3d950474cd5af971d839541557a457 diff --git a/Makefile b/Makefile index 9e9c832..ef19ad4 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,12 @@ # # 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: @@ -56,14 +62,30 @@ install-client: check: dist: distclean - dir=`basename $${PWD}` \ + rel=`grep "^NagCollect " ChangeLog|awk "{print \\\$$3 }"|head -n 1`; \ + dir=`basename $${PWD}` \ && cd .. \ - && tar cvzf "$${dir}.tar.gz" --exclude .git "$${dir}" + && 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/tests . + COPYFILE_DISABLE=true tar -czvf nagcollecttestscripts.tgz \ + -C client/lib/tests . .PHONY: all install install-all install-server install-client \ clean distclean check dist distcheck nagcollecttestscripts