summaryrefslogtreecommitdiffstats
path: root/debian/rules
blob: 11988d5b8bbb40ecec9b00c11dee6e63f3c69b4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#! /usr/bin/make -f

configure_opts	:= --prefix=/ --datarootdir=/usr
install_opts	:=

%:
	dh $@

build:	build-stamp
build-stamp:
	dh build --before dh_auto_configure
	autoreconf
	dh_auto_configure -- $(configure_opts)
	dh build --after dh_auto_configure
	touch $@

install: build
	dh_install $(install_opts)

binary: install