From 508b8d37019b5731d3aacd3e1e4059688fe10beb Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Sun, 10 Jan 2010 18:35:48 +0100 Subject: [PATCH] Added Makefile, primarily to build distribution archives --- Makefile | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 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 +# 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 -- 2.39.2