From fbb52c53dea0aff7ba059edc648192a9febd8b13 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Thu, 2 Jul 2009 23:22:53 +0200 Subject: makefile → Makefile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 21 +++++++++++++++++++++ makefile | 21 --------------------- 2 files changed, 21 insertions(+), 21 deletions(-) create mode 100644 Makefile delete mode 100644 makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..844b806 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +build/apt-why.1: bin/apt-why + mkdir -p build + pod2man $< > $@ + +install: + install -m 755 bin/apt-why /usr/local/bin + install -m 644 -D build/apt-why.1 /usr/local/share/man/man1/apt-why.1 + +install-completion: + install -m 644 provides/zsh/completions/_apt-why \ + /usr/share/zsh/functions/Completion/Debian + +clean: + $(RM) -r build + +uninstall: + $(RM) /usr/local/bin/apt-why + $(RM) /usr/local/share/man/man1/apt-why.1 + +uninstall-completion: + $(RM) /usr/share/zsh/functions/Completion/Debian/_apt-why diff --git a/makefile b/makefile deleted file mode 100644 index 844b806..0000000 --- a/makefile +++ /dev/null @@ -1,21 +0,0 @@ -build/apt-why.1: bin/apt-why - mkdir -p build - pod2man $< > $@ - -install: - install -m 755 bin/apt-why /usr/local/bin - install -m 644 -D build/apt-why.1 /usr/local/share/man/man1/apt-why.1 - -install-completion: - install -m 644 provides/zsh/completions/_apt-why \ - /usr/share/zsh/functions/Completion/Debian - -clean: - $(RM) -r build - -uninstall: - $(RM) /usr/local/bin/apt-why - $(RM) /usr/local/share/man/man1/apt-why.1 - -uninstall-completion: - $(RM) /usr/share/zsh/functions/Completion/Debian/_apt-why -- cgit v1.2.3