1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
#!/usr/bin/make -f
dhargs := --parallel
%:
prefix="/usr" dh $@ $(dhargs)
override_dh_auto_test:
dh_auto_test $(dhargs) $@ -- VERBOSE=true
override_dh_auto_configure:
dh_auto_configure $(dhargs) -- --program-suffix=sa
override_dh_auto_clean:
dh_auto_clean $(dhargs)
rm -f autotools/missing \
autotools/depcomp \
autotools/config.guess \
autotools/ltmain.sh \
autotools/compile \
autotools/config.sub \
autotools/install-sh \
autotools/test-driver \
INSTALL \
Makefile.in \
aclocal.m4 \
config.hin \
configure \
doc/Makefile.in \
lib/Makefile.in \
lib/public/Makefile.in \
pkg/Makefile.in \
src/Makefile.in \
test/Makefile.in
|