X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=blobdiff_plain;f=Makefile;h=7c5994e3a66811aaa25648e941e1d95e5e8065bb;hp=ed5177404952e6c90be1d2eb6b6fa2838cc023ef;hb=68ace2786dc26749014ea70a6ebb2b896b1f25d1;hpb=e3160d4cf8bd0488b74f6eedb3b9ad2af6cfa3bd diff --git a/Makefile b/Makefile index ed517740..7c5994e3 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # dgit # Integration between git and Debian-style archives # -# Copyright (C)2013 Ian Jackson +# Copyright (C)2013-2015 Ian Jackson # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -19,17 +19,38 @@ INSTALL=install INSTALL_DIR=$(INSTALL) -d INSTALL_PROGRAM=$(INSTALL) -m 755 +INSTALL_DATA=$(INSTALL) -m 644 + prefix?=/usr/local +bindir=$(prefix)/bin +mandir=$(prefix)/share/man +man1dir=$(mandir)/man1 +infraexamplesdir=$(prefix)/share/doc/dgit-infrastructure/examples + PROGRAMS=dgit +MAN1PAGES=dgit.1 + +INFRA_PROGRAMS=dgit-repos-server dgit-ssh-dispatch +INFRA_EXAMPLES=get-dm-txt ssh-wrap all: install: installdirs - $(INSTALL_PROGRAM) $(PROGRAMS) $(DESTDIR)$(prefix)/bin + $(INSTALL_PROGRAM) $(PROGRAMS) $(DESTDIR)$(bindir) + $(INSTALL_DATA) $(MAN1PAGES) $(DESTDIR)$(man1dir) installdirs: - $(INSTALL_DIR) $(DESTDIR)$(prefix)/bin + $(INSTALL_DIR) $(DESTDIR)$(bindir) $(DESTDIR)$(man1dir) + +install-infra: installdirs-infra + $(INSTALL_PROGRAM) $(addprefix infra/, $(INFRA_PROGRAMS)) \ + $(DESTDIR)$(bindir) + $(INSTALL_PROGRAM) $(addprefix infra/, $(INFRA_EXAMPLES)) \ + $(DESTDIR)$(infraexamplesdir) + +installdirs-infra: + $(INSTALL_DIR) $(DESTDIR)$(bindir) $(DESTDIR)$(infraexamplesdir) check installcheck: