]> arthur.barton.de Git - brew-completion.git/commitdiff
Added Makefile, primarily to build distribution archives
authorAlexander Barton <alex@barton.de>
Sun, 10 Jan 2010 17:35:48 +0000 (18:35 +0100)
committerAlexander Barton <alex@barton.de>
Sun, 10 Jan 2010 17:35:48 +0000 (18:35 +0100)
Makefile [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..ba8dd9b
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,29 @@
+# brew-completion: bash completion function for Homebrew (brew command)
+# Copyright (c)1020 Alexander Barton <alex@barton.de>
+# This is free software and published under the terms of the GNU
+# General Public License, see the file COPYING for details.
+
+NAME="brew-completion"
+
+all:
+
+install:
+
+check:
+
+clean:
+
+distclean: clean
+
+maintainer-clean: distclean
+
+dist:
+       rel=`grep "^>" ChangeLog | awk "{print \\\$$4 }"`; \
+        tar cvzf $(NAME)-r$$rel.tar.gz \
+        --exclude ".git" --exclude "*.tar.gz" --exclude "*.tgz" \
+        --exclude "._*" --exclude "*~" --exclude "*.bak" \
+        ../`basename $$PWD`
+
+distcheck: check dist
+
+.PHONY: all install check clean distclean maintainer-clean dist distcheck