blob: a8dfb956111141ed382f9142ddcb2139c9b57577 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/make -f
export DH_VERBOSE=1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
override_dh_clean:
[ ! -f Makefile ] || make distclean
rm -f test/*.o test/main test/Makefile
dh_clean
%:
dh $@ --with autoreconf
|