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

BUILD_HOME=debian/build-home

%:
	dh $@ --with autoreconf

override_dh_autoreconf:
	touch ChangeLog
	dh_autoreconf

override_dh_auto_test:
	mkdir -p $(BUILD_HOME)
	HOME=$(BUILD_HOME) dh_auto_test
	rm -Rfv $(BUILD_HOME)

override_dh_auto_clean:
	if [ -s ChangeLog ]; then rm -f ChangeLog; fi
	dh_auto_clean