]> arthur.barton.de Git - nagcollect.git/blobdiff - Makefile
New Makefile targets: "osxpkg" and "osxdmg"
[nagcollect.git] / Makefile
index 9e9c8327abc49e1a7858b6191190a3f92dffdeb0..b8f538c608d960fec735431cb1cce6f4f6cbc12c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -56,14 +56,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