#!/usr/bin/make -f

%:
	dh $@

override_dh_auto_build:
	# Run latex in batch mode so it doesn't halt on prompts
	latex -interaction=batchmode *.ins
	# Let the standard dh_auto_build tool continue if needed
	dh_auto_build

override_dh_clean:
	dh_clean
	rm -f *.log
	rm -f *.sty
