]> arthur.barton.de Git - brew-completion.git/blob - Makefile
Updated ChangeLog for release 7
[brew-completion.git] / Makefile
1 # brew-completion: bash completion function for Homebrew (brew command)
2 # Copyright (c)2010 Alexander Barton <alex@barton.de>
3 # This is free software and published under the terms of the GNU
4 # General Public License, see the file COPYING for details.
5
6 NAME="brew-completion"
7
8 all:
9
10 install:
11
12 check:
13
14 clean:
15
16 distclean: clean
17
18 maintainer-clean: distclean
19
20 dist:
21         rel=`grep "^>" ChangeLog | awk "{print \\\$$4 }" | head -n 1`; \
22          COPYFILE_DISABLE=true tar cvzf $(NAME)-r$$rel.tar.gz \
23          --exclude ".git" --exclude "*.tar.gz" --exclude "*.tgz" \
24          --exclude "._*" --exclude "*~" --exclude "*.bak" \
25          -C .. `basename $$PWD`
26
27 distcheck: check dist
28
29 .PHONY: all install check clean distclean maintainer-clean dist distcheck