#!/usr/bin/make -f # Uncomment this to turn on verbose mode. export DH_VERBOSE=1 # Uncomment this to force a specific compiler, like 'gcc-9' or 'gcc-10'. #export CC=gcc-10 # Make sure lintian does not complain about missing hardenings. export DEB_BUILD_MAINT_OPTIONS=hardening=+all %: dh $@ # Remove files generated by override_dh_auto_build. execute_after_dh_auto_clean: $(RM) debian/faq.txt debian/start.txt # Generate text files from html sources. execute_after_dh_auto_build: LANGUAGE=en && lynx -dump debian/faq.html | sed 's,file://.*/,,' > debian/faq.txt LANGUAGE=en && lynx -dump debian/start.html | sed 's,file://.*/,,' > debian/start.txt