#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

%:
	find ./logos -type f | sort > logo_config 
	PREFIX=$(CURDIR)/debian/linuxlogo/usr ./configure 
	cp -r po/ potmp/
	dh $@
	rm -rf potmp/

override_dh_auto_clean:
	[ -d potmp/ ] && rm -rf potmp/
	[ ! -f Makefile ] || ./configure && make distclean


