mirror of
https://github.com/git/git.git
synced 2024-11-19 15:34:51 +01:00
add installation support to Makefile
Signed-off-by: Ben Walton <bwalton@artsci.utoronto.ca>
This commit is contained in:
parent
d8b2c0da17
commit
0d31de303f
1 changed files with 20 additions and 0 deletions
20
Makefile
20
Makefile
|
@ -1,3 +1,13 @@
|
|||
prefix ?= /usr/local
|
||||
mandir ?= $(prefix)/share/man
|
||||
gitdir ?= $(shell git --exec-path)
|
||||
|
||||
# this should be set to a 'standard' bsd-type install program
|
||||
INSTALL ?= install
|
||||
INSTALL_DATA = $(INSTALL) -c -m 0644
|
||||
INSTALL_EXE = $(INSTALL) -c -m 0755
|
||||
INSTALL_DIR = $(INSTALL) -c -d -m 0755
|
||||
|
||||
default:
|
||||
@echo "git-subtree doesn't need to be built."
|
||||
@echo "Just copy it somewhere on your PATH, like /usr/local/bin."
|
||||
|
@ -5,6 +15,16 @@ default:
|
|||
@echo "Try: make doc"
|
||||
@false
|
||||
|
||||
install: install-exe install-doc
|
||||
|
||||
install-exe: git-subtree.sh
|
||||
$(INSTALL_DIR) $(DESTDIR)/$(gitdir)
|
||||
$(INSTALL_EXE) $< $(DESTDIR)/$(gitdir)/git-subtree
|
||||
|
||||
install-doc: git-subtree.1
|
||||
$(INSTALL_DIR) $(DESTDIR)/$(mandir)/man1/
|
||||
$(INSTALL_DATA) $< $(DESTDIR)/$(mandir)/man1/
|
||||
|
||||
doc: git-subtree.1
|
||||
|
||||
%.1: %.xml
|
||||
|
|
Loading…
Reference in a new issue