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
|
DPKG_EXPORT_BUILDFLAGS = 1
DPKG_EXPORT_BUILDTOOLS = nonempty
-include /usr/share/dpkg/buildflags.mk
include /usr/share/dpkg/buildtools.mk
%:
dh $@
override_dh_auto_configure:
override_dh_auto_build:
sh make_unix.sh
python3 scripts/gendocs.py
override_dh_auto_install:
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
python3 scripts/test.py
endif
override_dh_auto_clean:
$(RM) bam docs/bam.html scripts/*.pyc
$(RM) -r test_output
$(RM) docs/depgraph.png
|