51 lines
896 B
Plaintext
Raw Normal View History

2008-05-01 22:59:32 +02:00
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
VERSION=$(shell parsechangelog | grep ^Version | awk -F": " '{print $$2}' | cut -d"-" -f1)
2008-05-01 22:59:32 +02:00
d = debian/bash-completion
dh_bash-completion.1: extra/dh_bash-completion
pod2man \
--center "Bash-Completion Debhelper" \
--release $(VERSION) \
$< > extra/$@
2008-05-01 22:59:32 +02:00
build: build-stamp
build-stamp:
dh_testdir
touch $@
clean:
dh_testdir
dh_testroot
dh_clean build-stamp
2008-05-01 22:59:32 +02:00
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
dh_install
dh_link
2008-05-01 22:59:32 +02:00
binary-indep: build install
dh_testdir
dh_testroot
2008-06-21 22:30:57 +02:00
dh_installchangelogs
dh_installdocs README TODO
dh_installman
2008-05-01 22:59:32 +02:00
dh_compress -Xcontrib
dh_fixperms
dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
binary-arch: build install
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install