Merge git://github.com/git-l10n/git-po
[git.git] / git_remote_helpers / Makefile
blob3d122328c8d1d5e6f53c008aeee0da2c7d2fba80
2 # Makefile for the git_remote_helpers python support modules
4 pysetupfile:=setup.py
6 # Shell quote (do not use $(call) to accommodate ancient setups);
7 DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
9 ifndef PYTHON_PATH
10 ifeq ($(uname_S),FreeBSD)
11 PYTHON_PATH = /usr/local/bin/python
12 else
13 PYTHON_PATH = /usr/bin/python
14 endif
15 endif
16 ifndef prefix
17 prefix = $(HOME)
18 endif
19 ifndef V
20 QUIET = @
21 QUIETSETUP = --quiet
22 endif
24 PYLIBDIR=$(shell $(PYTHON_PATH) -c \
25 "import sys; \
26 print('lib/python%i.%i/site-packages' % sys.version_info[:2])")
28 py_version=$(shell $(PYTHON_PATH) -c \
29 'import sys; print("%i.%i" % sys.version_info[:2])')
31 all: $(pysetupfile)
32 $(QUIET)test "$$(cat GIT-PYTHON-VERSION 2>/dev/null)" = "$(py_version)" || \
33 flags=--force; \
34 $(PYTHON_PATH) $(pysetupfile) $(QUIETSETUP) build $$flags
35 $(QUIET)echo "$(py_version)" >GIT-PYTHON-VERSION
37 install: $(pysetupfile)
38 $(PYTHON_PATH) $(pysetupfile) install --prefix $(DESTDIR_SQ)$(prefix)
40 instlibdir: $(pysetupfile)
41 @echo "$(DESTDIR_SQ)$(prefix)/$(PYLIBDIR)"
43 clean:
44 $(QUIET)$(PYTHON_PATH) $(pysetupfile) $(QUIETSETUP) clean -a
45 $(RM) *.pyo *.pyc GIT-PYTHON-VERSION