| 12345678910111213141516171819202122232425262728293031 | #!/usr/bin/make -fexport DEB_BUILD_MAINT_OPTIONS = hardening=+all%:	dh $@override_dh_clean:	-rm \		debian/vblade-persist-convert.8 \		contrib/persistence/vblade-persistence.5	dh_cleanoverride_dh_auto_build:	dh_auto_build --no-parallel -- PLATFORM=linuxoverride_dh_auto_install:	$(MAKE) install prefix=debian/vblade/usroverride_dh_installchangelogs:	dh_installchangelogs NEWSoverride_dh_installman:	asciidoctor --attribute reproducible --backend=manpage debian/vblade-persist-convert.txt	asciidoctor --attribute reproducible --backend=manpage contrib/persistence/vblade-persistence.txt	dh_installman# needed as long as vblade-generator is provided by a patchoverride_dh_fixperms:	dh_fixperms	chmod 0755 debian/vblade/usr/lib/systemd/system-generators/vblade-generator
 |