#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

PKGDIR:=$(CURDIR)/debian/vice

override_dh_auto_configure:
	./configure \
		--prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man \
		--enable-gnomeui3 --enable-ethernet \
		--enable-fullscreen --enable-parsid --with-midas --without-xaw3d \
		--enable-arch=no

override_dh_install:
	dh_install
	rm -f $(PKGDIR)/usr/lib/vice/doc/COPYING
%:
	dh $@ --with autoreconf

.PHONY: override_dh_auto_configure override_dh_install
