aboutsummaryrefslogtreecommitdiff
path: root/debian/rules
blob: 05a4f6905a225034151fe8048a679e4623899415 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

%:
	dh $@ --buildsystem=makefile

override_dh_auto_configure:
	./configure --prefix=/usr
bgstack15