2005-07-15 03:26:31 +02:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
# -*- makefile -*-
|
|
|
|
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
|
|
#export DH_VERBOSE=1
|
|
|
|
|
|
|
|
CFLAGS = -g -Wall
|
|
|
|
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
|
|
|
|
CFLAGS += -O0
|
|
|
|
else
|
|
|
|
CFLAGS += -O2
|
|
|
|
endif
|
|
|
|
export CFLAGS
|
|
|
|
|
2005-07-23 21:26:32 +02:00
|
|
|
#
|
|
|
|
# On PowerPC we compile against the hand-crafted assembly, on all
|
|
|
|
# other architectures we compile against GPL'ed sha1 code lifted
|
|
|
|
# from Mozilla. OpenSSL is strangely licensed and best avoided
|
|
|
|
# in Debian.
|
|
|
|
#
|
|
|
|
HOST_ARCH=$(shell dpkg-architecture -qDEB_HOST_ARCH)
|
|
|
|
ifeq (${HOST_ARCH},powerpc)
|
|
|
|
export PPC_SHA1=YesPlease
|
|
|
|
else
|
|
|
|
export MOZILLA_SHA1=YesPlease
|
|
|
|
endif
|
|
|
|
|
2005-08-26 01:31:43 +02:00
|
|
|
# We do have the requisite perl modules in the mainline, and
|
|
|
|
# have no reason to shy away from this script.
|
|
|
|
export WITH_SEND_EMAIL=YesPlease
|
2005-07-23 21:26:32 +02:00
|
|
|
|
2005-07-15 03:26:31 +02:00
|
|
|
PREFIX := /usr
|
|
|
|
MANDIR := /usr/share/man/
|
|
|
|
|
|
|
|
SRC := ./
|
|
|
|
DOC := Documentation/
|
|
|
|
DESTDIR := $(CURDIR)/debian/tmp
|
|
|
|
DOC_DESTDIR := $(DESTDIR)/usr/share/doc/git-core/
|
|
|
|
MAN_DESTDIR := $(DESTDIR)/$(MANDIR)
|
|
|
|
|
2005-07-22 07:55:56 +02:00
|
|
|
build: debian/build-stamp
|
|
|
|
debian/build-stamp:
|
2005-07-15 03:26:31 +02:00
|
|
|
dh_testdir
|
2005-11-05 11:39:42 +01:00
|
|
|
$(MAKE) prefix=$(PREFIX) PYTHON_PATH=/usr/bin/python2.4 all test doc
|
2005-07-15 03:26:31 +02:00
|
|
|
touch debian/build-stamp
|
|
|
|
|
|
|
|
debian-clean:
|
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
rm -f debian/build-stamp
|
|
|
|
dh_clean
|
|
|
|
|
|
|
|
clean: debian-clean
|
|
|
|
$(MAKE) clean
|
|
|
|
|
2005-07-22 07:55:56 +02:00
|
|
|
install: build
|
2005-07-15 03:26:31 +02:00
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
dh_clean -k
|
|
|
|
dh_installdirs
|
|
|
|
|
2005-08-12 21:25:34 +02:00
|
|
|
make DESTDIR=$(DESTDIR) prefix=$(PREFIX) mandir=$(MANDIR) \
|
2005-08-12 19:37:33 +02:00
|
|
|
install install-doc
|
2005-07-15 03:26:31 +02:00
|
|
|
|
2005-11-05 21:54:25 +01:00
|
|
|
make -C Documentation DESTDIR=$(DESTDIR) prefix=$(PREFIX) \
|
|
|
|
WEBDOC_DEST=$(DOC_DESTDIR) install-webdoc
|
2005-07-15 03:26:31 +02:00
|
|
|
|
2005-11-05 11:39:42 +01:00
|
|
|
dh_movefiles -p git-arch
|
|
|
|
dh_movefiles -p git-cvs
|
|
|
|
dh_movefiles -p git-svn
|
2005-08-11 01:54:36 +02:00
|
|
|
dh_movefiles -p git-tk
|
2005-11-05 11:39:42 +01:00
|
|
|
dh_movefiles -p git-email
|
|
|
|
dh_movefiles -p git-doc
|
2005-08-11 01:54:36 +02:00
|
|
|
dh_movefiles -p git-core
|
|
|
|
find debian/tmp -type d -o -print | sed -e 's/^/? /'
|
2005-07-15 03:26:31 +02:00
|
|
|
|
2005-08-13 02:38:15 +02:00
|
|
|
binary-arch: build install
|
2005-07-15 03:26:31 +02:00
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
2005-08-13 02:38:15 +02:00
|
|
|
dh_installchangelogs -a
|
|
|
|
dh_installdocs -a
|
|
|
|
dh_strip -a
|
|
|
|
dh_compress -a
|
|
|
|
dh_fixperms -a
|
|
|
|
dh_perl -a
|
|
|
|
dh_makeshlibs -a
|
|
|
|
dh_installdeb -a
|
|
|
|
dh_shlibdeps -a
|
|
|
|
dh_gencontrol -a
|
|
|
|
dh_md5sums -a
|
|
|
|
dh_builddeb -a
|
|
|
|
|
|
|
|
binary-indep: build install
|
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
dh_installchangelogs -i
|
|
|
|
dh_installdocs -i
|
|
|
|
dh_compress -i
|
|
|
|
dh_fixperms -i
|
|
|
|
dh_makeshlibs -i
|
|
|
|
dh_installdeb -i
|
|
|
|
dh_shlibdeps -i
|
|
|
|
dh_gencontrol -i
|
|
|
|
dh_md5sums -i
|
|
|
|
dh_builddeb -i
|
|
|
|
|
|
|
|
binary: binary-arch binary-indep
|
2005-07-15 03:26:31 +02:00
|
|
|
|
|
|
|
.PHONY: build clean binary install clean debian-clean
|