spm

Personal fork of spm (simple password manager)
git clone git@getsh.org:spm.git
Log | Files | Refs | README | LICENSE

commit 38aef7ce6010ce4391f504f06149b2e7d2a72362
parent fcc8f7810c6a9c375e66573ac8ae599033bbef17
Author: Sören Tempel <soeren+git@soeren-tempel.net>
Date:   Fri, 13 Mar 2015 17:16:55 +0100

Very minimal Makefile cleanup

Diffstat:
MMakefile | 9+++------
1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/Makefile b/Makefile @@ -13,11 +13,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -# Current tpm release version. VERSION = 1.2 - -PREFIX ?= /usr/local -MANPREFIX ?= $(PREFIX)/share/man +PREFIX = /usr/local all: tpm.1 tpm.1: README.pod @@ -26,11 +23,11 @@ tpm.1: README.pod install: tpm.1 install -Dm755 tpm "$(DESTDIR)$(PREFIX)/bin/tpm" - install -Dm644 tpm.1 "$(DESTDIR)$(MANPREFIX)/man1/tpm.1" + install -Dm644 tpm.1 "$(DESTDIR)/share/man/man1/tpm.1" uninstall: $(RM) "$(DESTDIR)$(PREFIX)/bin/tpm" \ - "$(DESTDIR)$(MANPREFIX)/man1/tpm.1" + "$(DESTDIR)/share/man/man1/tpm.1" clean: $(RM) tpm.1