#!/usr/bin/make -f

ifeq ($(DEB_BUILD_GNU_CPU),sh4)
  CFLAGS+=-mieee
endif

%:
	dh $@ --with autoreconf


override_dh_auto_install:
	dh_auto_install --
	sed -i "/dependency_libs/ s/'.*'/''/" `find debian/ -name '*.la'`

override_dh_auto_test:
	
